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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fafafa;
}

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

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8B4513;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
    color: #8B4513;
    border-bottom-color: #8B4513;
}

.ad-disclosure {
    font-size: 0.85rem;
    color: #777;
    padding: 4px 12px;
    background-color: #f0f0f0;
    border-radius: 4px;
}

.hero-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 600px;
    margin-bottom: 60px;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding: 80px 40px;
    background: linear-gradient(135deg, #D2691E 0%, #8B4513 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: white;
    color: #8B4513;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.intro-section {
    padding: 60px 0;
    background-color: #fff;
}

.intro-section .container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.intro-card {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background: linear-gradient(to bottom right, #f8f8f8, #ffffff);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.intro-card h2 {
    color: #8B4513;
    font-size: 1.9rem;
    margin-bottom: 18px;
}

.intro-card h3 {
    color: #555;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.intro-card p {
    color: #666;
    font-size: 1.05rem;
}

.services-grid {
    padding: 80px 0;
    background-color: #fafafa;
}

.section-title {
    text-align: center;
    font-size: 2.4rem;
    color: #2c3e50;
    margin-bottom: 50px;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    max-width: 380px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-image {
    height: 220px;
    overflow: hidden;
}

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

.card-body {
    padding: 28px;
}

.card-body h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 14px;
}

.card-body p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.98rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 18px;
}

.btn-select {
    width: 100%;
    padding: 12px 24px;
    background-color: #D2691E;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-select:hover {
    background-color: #8B4513;
    transform: scale(1.02);
}

.form-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.form-section.hidden {
    display: none;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.form-wrapper h2 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 2rem;
}

.selected-service-info,
.selected-price-info {
    margin-bottom: 10px;
    color: #555;
}

.selected-service-info strong,
.selected-price-info strong {
    color: #8B4513;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 14px 24px;
    background-color: #8B4513;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.why-us-section {
    padding: 70px 0;
    background-color: #fff;
}

.why-card {
    background: linear-gradient(to bottom, #fafafa, #ffffff);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.why-card h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 35px;
    text-align: center;
}

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

.feature {
    flex: 1 1 calc(50% - 30px);
    min-width: 250px;
    padding: 25px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #D2691E;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.feature h4 {
    color: #8B4513;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.feature p {
    color: #666;
    font-size: 0.98rem;
}

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-section h4 {
    margin-bottom: 18px;
    font-size: 1.2rem;
    color: #D2691E;
}

.footer-section p {
    color: #bbb;
    font-size: 0.95rem;
}

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

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

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #D2691E;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 8px;
    font-size: 0.88rem;
    color: #bbb;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.97);
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.2s;
}

.btn-cookie:hover {
    opacity: 0.9;
    transform: scale(1.03);
}

.btn-cookie.accept {
    background-color: #27ae60;
    color: white;
}

.btn-cookie.reject {
    background-color: #95a5a6;
    color: white;
}

.page-hero {
    background: linear-gradient(135deg, #D2691E 0%, #8B4513 100%);
    color: white;
    padding: 80px 0;
    margin-bottom: 50px;
}

.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

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

.content-card {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.content-card.reverse {
    flex-direction: row-reverse;
}

.card-text {
    flex: 1;
    min-width: 300px;
}

.card-text h2 {
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 18px;
}

.card-text p {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.card-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.values-section {
    margin: 70px 0;
    padding: 50px;
    background: linear-gradient(to bottom right, #fafafa, #ffffff);
    border-radius: 12px;
}

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

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

.value-card {
    flex: 1 1 calc(50% - 30px);
    min-width: 250px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.07);
}

.value-card h3 {
    color: #D2691E;
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

.team-info {
    padding: 40px;
    background-color: #f8f8f8;
    border-radius: 10px;
    border-left: 5px solid #8B4513;
}

.team-info h2 {
    color: #2c3e50;
    margin-bottom: 18px;
    font-size: 1.9rem;
}

.team-info p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.services-detailed {
    padding: 60px 0;
}

.service-detail-card {
    margin-bottom: 60px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    background: linear-gradient(to right, #f8f8f8, #ffffff);
    border-bottom: 2px solid #f0f0f0;
    flex-wrap: wrap;
    gap: 20px;
}

.detail-header h2 {
    font-size: 2rem;
    color: #2c3e50;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #8B4513;
}

.detail-content {
    display: flex;
    gap: 40px;
    padding: 40px;
    flex-wrap: wrap;
}

.detail-content.reverse {
    flex-direction: row-reverse;
}

.detail-image {
    flex: 1;
    min-width: 300px;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
}

.detail-text {
    flex: 1;
    min-width: 300px;
}

.detail-text h3 {
    color: #8B4513;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.detail-text ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.detail-text ul li {
    margin-bottom: 10px;
    color: #666;
    line-height: 1.6;
}

.detail-text p {
    color: #777;
    margin-bottom: 10px;
}

.btn-action {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 28px;
    background-color: #D2691E;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-action:hover {
    background-color: #8B4513;
    transform: translateY(-2px);
}

.info-banner {
    padding: 60px 0;
    background-color: #fafafa;
}

.info-banner h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 40px;
}

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

.info-item {
    flex: 1 1 calc(50% - 30px);
    min-width: 250px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.info-item h4 {
    color: #D2691E;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.info-item p {
    color: #666;
    line-height: 1.7;
}

.contact-section {
    padding: 60px 0;
}

.contact-layout {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.contact-info-card h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    color: #8B4513;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.contact-item p {
    color: #666;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    min-width: 300px;
}

.contact-image {
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.contact-note {
    padding: 25px;
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.contact-note h3 {
    color: #D2691E;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-note p {
    color: #666;
    line-height: 1.6;
}

.contact-note a {
    color: #8B4513;
    font-weight: 600;
}

.additional-info {
    padding: 60px 0;
    background-color: #fafafa;
}

.additional-info h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 40px;
}

.info-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.info-card-small {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.info-card-small h4 {
    color: #8B4513;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.info-card-small p {
    color: #666;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    min-height: calc(100vh - 300px);
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: white;
    font-size: 3rem;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 25px;
}

.thanks-card h1 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.thanks-message {
    color: #666;
    font-size: 1.15rem;
    margin-bottom: 35px;
}

.reservation-info {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: left;
}

.reservation-info h3 {
    color: #8B4513;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.reservation-info p {
    color: #555;
    margin-bottom: 8px;
}

.next-steps {
    text-align: left;
    margin-bottom: 35px;
}

.next-steps h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.next-steps ol {
    padding-left: 25px;
}

.next-steps ol li {
    color: #666;
    margin-bottom: 12px;
    line-height: 1.7;
}

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

.btn-primary,
.btn-secondary {
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, opacity 0.3s;
}

.btn-primary {
    background-color: #8B4513;
    color: white;
}

.btn-secondary {
    background-color: #D2691E;
    color: white;
}

.btn-primary:hover,
.btn-secondary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.thanks-note {
    padding: 20px;
    background: #fffbf0;
    border-left: 4px solid #D2691E;
    border-radius: 6px;
    text-align: left;
}

.thanks-note p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.legal-page {
    padding: 60px 0;
    background-color: #fafafa;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.last-updated {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.legal-content {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.legal-content h2 {
    color: #8B4513;
    font-size: 1.7rem;
    margin-top: 35px;
    margin-bottom: 15px;
}

.legal-content h3 {
    color: #D2691E;
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-content ul li,
.legal-content ol li {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content a {
    color: #8B4513;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #D2691E;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .service-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .content-card,
    .content-card.reverse {
        flex-direction: column;
    }

    .detail-content,
    .detail-content.reverse {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
    }

    .thanks-card {
        padding: 30px 20px;
    }

    .legal-content {
        padding: 30px 20px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}