* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fdfbf7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #d4a574;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #c19360;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e4dc;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #d4a574;
}

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #f8f6f2;
    border-radius: 12px;
    border: 1px solid #e8e4dc;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #2c3e50;
}

.hero-section {
    margin-bottom: 60px;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #e8e4dc;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    color: #ffffff;
    padding: 60px 40px;
}

.hero-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    max-width: 700px;
    line-height: 1.6;
}

.intro-cards {
    padding: 80px 0;
    background-color: #ffffff;
}

.card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.info-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background-color: #fdfbf7;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background-color: #e8e4dc;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.info-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2c3e50;
    font-weight: 600;
}

.card-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

.services-preview {
    padding: 80px 0;
    background-color: #f8f6f2;
}

.services-preview h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto 50px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-top: 40px;
}

.service-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.service-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
    flex-grow: 1;
    margin-bottom: 20px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 20px;
}

.btn-cta {
    display: inline-block;
    padding: 12px 28px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-cta:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.philosophy-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.split-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.content-block {
    flex: 1;
    min-width: 320px;
}

.content-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 700;
}

.content-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.image-block {
    flex: 1;
    min-width: 320px;
    background-color: #e8e4dc;
}

.image-block img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    object-fit: cover;
}

.testimonials-section {
    padding: 80px 0;
    background-color: #2c3e50;
    color: #ffffff;
}

.testimonials-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 8px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    border-left: 4px solid #d4a574;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #d4a574;
    font-weight: 600;
}

.contact-form-section {
    padding: 80px 0;
    background-color: #f8f6f2;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
    text-align: center;
}

.form-wrapper > p {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 40px;
    font-size: 16px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e8e4dc;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a574;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 40px 0;
    background-color: #ffffff;
}

.disclaimer-text {
    text-align: center;
    font-size: 13px;
    color: #7f8c8d;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #bdc3c7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #d4a574;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: #bdc3c7;
}

.page-hero .hero-image-wrapper {
    height: 400px;
}

.page-hero .hero-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero .hero-overlay h1 {
    font-size: 52px;
    text-align: center;
}

.page-hero .hero-overlay p {
    text-align: center;
    margin: 0 auto;
}

.about-content {
    padding: 80px 0;
}

.content-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.content-card h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 700;
}

.content-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.image-text-card {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.image-text-card .card-image {
    flex: 1;
    min-width: 320px;
    height: auto;
    background-color: #e8e4dc;
}

.image-text-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-text-card .card-text {
    flex: 1;
    min-width: 320px;
    padding: 40px;
}

.image-text-card .card-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.image-text-card .card-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.values-section {
    background-color: #f8f6f2;
    padding: 60px 50px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.values-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 700;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 28px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

.community-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.community-image {
    flex: 1;
    min-width: 320px;
    background-color: #e8e4dc;
}

.community-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.community-text {
    flex: 1;
    min-width: 320px;
    padding: 40px;
}

.community-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.community-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.cta-card {
    background-color: #d4a574;
    color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    text-align: center;
}

.cta-card h3 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-card p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-card .btn-cta {
    background-color: #ffffff;
    color: #2c3e50;
}

.cta-card .btn-cta:hover {
    background-color: #f8f6f2;
}

.services-detail {
    padding: 80px 0;
}

.service-detail-card {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
    min-width: 320px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.service-price-large {
    font-size: 28px;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 24px;
}

.service-detail-content h4 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.service-detail-content ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.service-detail-content ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 8px;
}

.service-detail-image {
    flex: 1;
    min-width: 320px;
    background-color: #e8e4dc;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-section {
    padding: 80px 0;
    background-color: #f8f6f2;
}

.comparison-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 700;
}

.comparison-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.comparison-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    flex: 1;
    min-width: 260px;
    max-width: 300px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.comparison-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.comparison-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

.contact-info-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.contact-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    flex: 1;
    min-width: 320px;
    max-width: 450px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.contact-card h2 {
    font-size: 26px;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detail-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
}

.detail-item p {
    font-size: 15px;
    line-height: 1.8;
    color: #5a6c7d;
}

.detail-item .note {
    font-size: 13px;
    color: #7f8c8d;
    margin-top: 8px;
    font-style: italic;
}

.visit-info-section {
    padding: 80px 0;
    background-color: #f8f6f2;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.info-card-large {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    flex: 1;
    min-width: 320px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.info-card-large h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.info-card-large p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.info-card-large ul {
    margin: 16px 0;
    padding-left: 20px;
}

.info-card-large ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 8px;
}

.market-schedule {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.market-schedule h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.market-schedule > p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.schedule-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 30px;
}

.schedule-card {
    background-color: #f8f6f2;
    padding: 28px;
    border-radius: 8px;
    flex: 1;
    min-width: 260px;
}

.schedule-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.schedule-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #5a6c7d;
}

.schedule-note {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

.directions-section {
    padding: 80px 0;
}

.directions-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 700;
}

.directions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.direction-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.direction-card h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 600;
}

.direction-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 12px;
}

.connect-section {
    padding: 80px 0;
    background-color: #f8f6f2;
}

.connect-card {
    background-color: #d4a574;
    color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.connect-card h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 700;
}

.connect-card p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.connect-card .btn-cta {
    background-color: #ffffff;
    color: #2c3e50;
}

.connect-card .btn-cta:hover {
    background-color: #f8f6f2;
}

.thanks-section {
    padding: 100px 0;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #ffffff;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #f8f6f2;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.submission-info p {
    font-size: 16px;
    color: #2c3e50;
    margin: 0;
}

.next-steps {
    margin: 60px 0;
}

.next-steps h3 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.step-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #d4a574;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 auto 20px;
}

.step-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.step-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

.thanks-info {
    background-color: #f8f6f2;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info p {
    font-size: 15px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.thanks-info p:last-child {
    margin-bottom: 0;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid #2c3e50;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.meanwhile-section h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.meanwhile-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.meanwhile-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.meanwhile-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.meanwhile-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.meanwhile-card a {
    color: #d4a574;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.meanwhile-card a:hover {
    color: #c19360;
}

.legal-content {
    padding: 80px 0;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

.updated-date {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 12px;
    margin-top: 24px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-section h4 {
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.legal-section ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.legal-section ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 8px;
}

.legal-section a {
    color: #d4a574;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #c19360;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table thead {
    background-color: #f8f6f2;
}

.cookie-table th {
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 2px solid #e8e4dc;
}

.cookie-table td {
    padding: 12px;
    border-bottom: 1px solid #e8e4dc;
    color: #5a6c7d;
    font-size: 15px;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-overlay p {
        font-size: 16px;
    }

    .page-hero .hero-overlay h1 {
        font-size: 38px;
    }

    .service-detail-card.reverse {
        flex-direction: column;
    }

    .form-wrapper {
        padding: 30px;
    }

    .content-card {
        padding: 30px;
    }

    .values-section {
        padding: 40px 30px;
    }

    .cookie-table {
        font-size: 13px;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .hero-overlay h1 {
        font-size: 28px;
    }

    .hero-overlay p {
        font-size: 14px;
    }

    .page-hero .hero-overlay h1 {
        font-size: 32px;
    }

    .thanks-content h1 {
        font-size: 32px;
    }

    .form-wrapper {
        padding: 20px;
    }

    .content-card {
        padding: 20px;
    }

    .values-section {
        padding: 30px 20px;
    }
}