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

:root {
    --primary-color: #2C5F7C;
    --secondary-color: #6B9AC4;
    --accent-color: #D4A574;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4CAF50;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--background-light);
}

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

.header {
    background-color: var(--background-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.brand h1 {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: 600;
}

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

.nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 0;
}

.nav a:hover,
.nav a.active {
    color: var(--primary-color);
}

.ad-disclosure {
    font-size: 12px;
    color: var(--text-light);
    padding: 6px 12px;
    background-color: var(--background-light);
    border-radius: 4px;
    margin-left: 16px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: var(--background-white);
    box-shadow: var(--shadow-md);
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 20px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 12px 0;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
}

.hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin: 32px auto;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    background-color: var(--secondary-color);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay .container {
    text-align: center;
    color: white;
}

.hero-overlay h2 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 700;
}

.hero-overlay p {
    font-size: 22px;
    margin-bottom: 32px;
}

.cta-btn {
    background-color: var(--accent-color);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    background-color: #c49563;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.intro-section {
    padding: 64px 0;
}

.intro-card {
    background-color: var(--background-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-card h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.intro-card p {
    font-size: 18px;
    color: var(--text-light);
}

.services-grid {
    padding: 64px 0;
    background-color: var(--background-white);
}

.section-title {
    text-align: center;
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 48px;
}

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

.service-card {
    background-color: var(--background-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    flex: 0 1 calc(33.333% - 22px);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: var(--secondary-color);
}

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

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

.card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.card-body p {
    color: var(--text-light);
    margin-bottom: 16px;
    flex-grow: 1;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 16px 0;
}

.select-service {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.select-service:hover {
    background-color: var(--secondary-color);
}

.philosophy-card {
    padding: 80px 0;
    background-color: var(--background-light);
}

.philosophy-grid {
    display: flex;
    gap: 48px;
    align-items: center;
}

.philosophy-image {
    flex: 0 0 45%;
}

.philosophy-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.philosophy-content {
    flex: 1;
}

.philosophy-content h3 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.philosophy-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.link-arrow {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 16px;
    transition: all 0.3s;
}

.link-arrow:hover {
    transform: translateX(4px);
}

.booking-section {
    padding: 80px 0;
    background-color: var(--background-white);
}

.booking-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--background-light);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.booking-card h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 16px;
    text-align: center;
}

.booking-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 32px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

.submit-btn {
    background-color: var(--accent-color);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.trust-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.trust-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 48px;
}

.testimonials-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 22px);
    background-color: var(--background-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    min-width: 280px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 64px 0 24px;
}

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

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--accent-color);
}

.footer-col p {
    color: #cccccc;
    font-size: 14px;
}

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

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

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

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.disclaimer {
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 24px;
}

.disclaimer p {
    font-size: 13px;
    color: #bbbbbb;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999999;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 24px;
    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;
    gap: 24px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

.btn-accept {
    background-color: var(--success-color);
    color: white;
}

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

.btn-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-hero h2 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
}

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

.about-grid {
    display: flex;
    gap: 48px;
    margin-bottom: 64px;
    align-items: center;
}

.about-text-card {
    flex: 1;
    background-color: var(--background-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.about-text-card h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.about-text-card p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.about-image-card {
    flex: 0 0 45%;
}

.about-image-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.values-section {
    margin-bottom: 64px;
}

.values-section h3 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 32px;
    text-align: center;
}

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

.value-card {
    flex: 1 1 calc(50% - 16px);
    background-color: var(--background-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    min-width: 280px;
}

.value-card h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-light);
    font-size: 16px;
}

.team-section {
    background-color: var(--background-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 64px;
}

.team-section h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.team-section p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.cta-card-about {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 48px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

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

.cta-card-about p {
    font-size: 18px;
    margin-bottom: 32px;
}

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

.service-detail-card {
    display: flex;
    gap: 48px;
    margin-bottom: 64px;
    background-color: var(--background-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.service-detail-image {
    flex: 0 0 45%;
    background-color: var(--secondary-color);
}

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

.service-detail-content {
    flex: 1;
    padding: 48px;
}

.service-detail-content h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 24px;
}

.service-detail-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.benefits-list {
    list-style: none;
    margin: 24px 0;
}

.benefits-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-light);
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.booking-cta-section {
    padding: 64px 0;
    background-color: var(--background-light);
}

.booking-cta-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--background-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.booking-cta-card h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.booking-cta-card p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

.contact-grid {
    display: flex;
    gap: 48px;
    margin-bottom: 48px;
}

.contact-info-card {
    flex: 1;
    background-color: var(--background-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 32px;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.info-block p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

.contact-map-card {
    flex: 1;
    background-color: var(--background-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.map-placeholder p {
    color: white;
    font-size: 20px;
    text-align: center;
}

.contact-cta-card {
    background-color: var(--background-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.contact-cta-card h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.contact-cta-card p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

.thanks-card {
    max-width: 700px;
    margin: 0 auto 48px;
    background-color: var(--background-white);
    padding: 64px 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-card h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.thanks-card p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.next-steps-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--background-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.next-steps-card h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 32px;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    flex: 0 0 48px;
    height: 48px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step-content h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-light);
    font-size: 16px;
}

.legal-page {
    padding: 64px 0;
}

.legal-page h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.legal-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.legal-section {
    background-color: var(--background-white);
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.legal-section h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.legal-section h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin: 24px 0 12px;
}

.legal-section p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section ul li {
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-date {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 48px;
    text-align: center;
}

@media (max-width: 1024px) {
    .service-card {
        flex: 0 1 calc(50% - 16px);
    }

    .philosophy-grid {
        flex-direction: column;
    }

    .philosophy-image {
        flex: 0 0 100%;
    }

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

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

    .service-detail-image {
        flex: 0 0 300px;
    }

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

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .testimonial-card {
        flex: 0 1 100%;
    }

    .value-card {
        flex: 0 1 100%;
    }

    .about-grid {
        flex-direction: column;
    }

    .about-image-card {
        flex: 0 0 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-image-wrapper {
        height: 400px;
    }

    .hero-overlay h2 {
        font-size: 28px;
    }

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

    .intro-card {
        padding: 32px 24px;
    }

    .booking-card {
        padding: 32px 24px;
    }

    .service-detail-content {
        padding: 32px 24px;
    }
}
