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

:root {
    --primary-color: #2d5f7e;
    --secondary-color: #4a90a4;
    --accent-color: #ff6b6b;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #7a7a7a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #2ecc71;
    --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 32px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: var(--transition);
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    color: var(--text-medium);
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

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

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

.btn-cookie-reject {
    background: transparent;
    color: var(--text-medium);
    border: 2px solid var(--border-color);
}

.btn-cookie-reject:hover {
    background: var(--bg-light);
}

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

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

.nav-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hero-card {
    background: linear-gradient(135deg, rgba(45, 95, 126, 0.95), rgba(74, 144, 164, 0.85)), url('https://images.unsplash.com/photo-1548199973-03cce0bbc87b?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    max-width: 800px;
    padding: 48px 24px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
    line-height: 1.6;
}

.btn-hero,
.btn-primary,
.btn-secondary,
.btn-submit {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-hero:hover,
.btn-primary:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.intro-section,
.trust-section,
.testimonial-section,
.booking-section,
.form-section,
.about-story,
.values-section,
.team-section,
.mission-section,
.services-detailed,
.contact-section,
.faq-section,
.contact-cta {
    padding: 80px 0;
}

.intro-card,
.booking-card,
.story-card,
.mission-card,
.cta-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 56px;
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.intro-card h2,
.booking-card h2,
.story-card h2,
.mission-card h2,
.cta-card h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.intro-card p,
.booking-card p,
.story-card p,
.mission-card p,
.cta-card p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

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

.service-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    flex: 1 1 calc(33.333% - 24px);
    min-width: 320px;
    max-width: 380px;
}

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

.card-image {
    height: 240px;
    background-size: cover;
    background-position: center;
}

.card-body {
    padding: 32px;
}

.card-body h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.card-body p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

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

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

.trust-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    flex: 1 1 calc(33.333% - 24px);
    min-width: 280px;
}

.trust-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.trust-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.trust-card p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

.testimonial-section {
    background: var(--bg-white);
}

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

.testimonial-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 36px;
    flex: 1 1 calc(33.333% - 24px);
    min-width: 300px;
    max-width: 380px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

.form-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 48px;
    box-shadow: var(--shadow-md);
    max-width: 700px;
    margin: 0 auto;
}

.form-card h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.selected-service-display {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 32px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    background: var(--accent-color);
    color: white;
    padding: 16px;
    margin-top: 12px;
}

.btn-submit:hover {
    background: #ff5252;
}

.cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transform: translateY(100%);
    transition: var(--transition);
}

.cta-sticky.show {
    transform: translateY(0);
}

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

.sticky-text {
    font-size: 18px;
}

.btn-sticky {
    background: var(--accent-color);
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-sticky:hover {
    background: #ff5252;
}

.page-hero {
    background: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

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

.values-grid,
.faq-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 40px;
}

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

.value-card h3,
.faq-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-card p,
.faq-card p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

.team-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.team-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    flex: 1 1 calc(25% - 24px);
    min-width: 260px;
    max-width: 300px;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.team-image {
    height: 280px;
    background-size: cover;
    background-position: center;
}

.team-info {
    padding: 24px;
}

.team-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.team-role {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-info p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

.service-detail-card {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 80px;
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

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

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.price-display {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-includes {
    list-style: none;
    margin-bottom: 32px;
}

.service-includes li {
    font-size: 16px;
    color: var(--text-medium);
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 18px;
}

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

.contact-info-card,
.contact-map-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 48px;
    box-shadow: var(--shadow-md);
    flex: 1 1 calc(50% - 24px);
    min-width: 320px;
}

.contact-info-card h2,
.contact-map-card h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-details p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-note {
    font-size: 14px !important;
    color: var(--text-light) !important;
    margin-top: 4px;
}

.map-placeholder {
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

.map-placeholder svg {
    display: block;
    width: 100%;
    height: auto;
}

.map-note {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

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

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

.thanks-card h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 32px;
}

.thanks-details {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}

.booking-summary p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.thanks-next {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.thanks-next ul {
    list-style: none;
}

.thanks-next li {
    font-size: 16px;
    color: var(--text-medium);
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.thanks-next li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

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

.legal-page {
    padding: 80px 0;
    background: var(--bg-white);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.legal-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

.legal-content li {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--secondary-color);
}

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

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    font-size: 15px;
    color: var(--text-medium);
}

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

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

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

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

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: white;
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: var(--transition);
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

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

    .service-card {
        flex: 1 1 calc(50% - 16px);
    }

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

    .service-detail-image {
        min-height: 300px;
        width: 100%;
    }

    .intro-card,
    .booking-card,
    .story-card,
    .mission-card,
    .cta-card {
        padding: 40px;
    }

    .form-card {
        padding: 32px;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .section-header h2 {
        font-size: 32px;
    }

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

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

    .intro-card,
    .booking-card,
    .story-card,
    .mission-card,
    .cta-card,
    .form-card,
    .thanks-card {
        padding: 24px;
    }

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

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