* {
    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.6;
    color: #2d3748;
    background-color: #f7fafc;
}

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

.main-header {
    background-color: #1a202c;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s;
}

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

.ad-notice {
    color: #fbbf24;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    background-color: rgba(251, 191, 36, 0.1);
    border-radius: 4px;
}

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

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s;
}

.hero-section {
    padding: 0;
}

.hero-card {
    position: relative;
    overflow: hidden;
}

.hero-image {
    height: 580px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 32, 44, 0.85), rgba(45, 55, 72, 0.75));
    display: flex;
    align-items: center;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.hero-overlay p {
    font-size: 1.35rem;
    color: #e2e8f0;
    max-width: 700px;
}

.intro-section {
    padding: 5rem 0;
    background-color: #fff;
}

.intro-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.intro-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background-color: #f7fafc;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.intro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.intro-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.intro-card p {
    color: #4a5568;
    line-height: 1.7;
}

.value-section {
    padding: 6rem 0;
    background-color: #edf2f7;
}

.value-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.value-image {
    flex: 1;
}

.value-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.value-content {
    flex: 1;
}

.value-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    line-height: 1.2;
}

.value-content p {
    margin-bottom: 1.5rem;
    color: #4a5568;
    font-size: 1.1rem;
}

.value-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2b6cb0;
}

.stat-label {
    color: #718096;
    font-size: 0.95rem;
}

.services-preview {
    padding: 6rem 0;
    background-color: #fff;
}

.services-preview h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a202c;
}

.section-subtitle {
    text-align: center;
    color: #718096;
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.service-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.service-content p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-features span {
    color: #2d3748;
    font-size: 0.9rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features span::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    background-color: #2b6cb0;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: auto;
}

.btn-select-service:hover {
    background-color: #2c5282;
    transform: scale(1.02);
}

.btn-select-service:active {
    transform: scale(0.98);
}

.booking-section {
    padding: 6rem 0;
    background-color: #edf2f7;
}

.booking-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.booking-card h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.booking-card > p {
    color: #718096;
    margin-bottom: 2.5rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-notice {
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1rem;
    border-radius: 4px;
    color: #92400e;
    display: none;
}

.form-notice.show {
    display: block;
}

.form-notice.success {
    background-color: #d1fae5;
    border-left-color: #10b981;
    color: #065f46;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background-color: #2b6cb0;
    color: #fff;
    border: none;
    padding: 1.125rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #2c5282;
    transform: scale(1.02);
}

.btn-submit:active {
    transform: scale(0.98);
}

.btn-submit:disabled {
    background-color: #a0aec0;
    cursor: not-allowed;
    transform: none;
}

.trust-section {
    padding: 6rem 0;
    background-color: #fff;
}

.trust-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: #1a202c;
}

.testimonial-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
    background-color: #f7fafc;
    border-radius: 12px;
    border-left: 4px solid #2b6cb0;
}

.testimonial-card p {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: #1a202c;
    font-size: 1rem;
}

.testimonial-author span {
    color: #718096;
    font-size: 0.9rem;
}

.main-footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.footer-column a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #90cdf4;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #a0aec0;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.disclaimer {
    font-size: 0.8rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 1.5rem auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    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: 2rem;
}

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-cookie-accept {
    background-color: #48bb78;
    color: #fff;
}

.btn-cookie-accept:hover {
    background-color: #38a169;
    transform: scale(1.02);
}

.btn-cookie-reject {
    background-color: #4a5568;
    color: #fff;
}

.btn-cookie-reject:hover {
    background-color: #2d3748;
    transform: scale(1.02);
}

.page-header {
    background: linear-gradient(135deg, #1a202c, #2d3748);
    padding: 5rem 0 3rem;
    color: #fff;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #e2e8f0;
    max-width: 700px;
}

.content-section {
    padding: 4rem 0;
    background-color: #fff;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1rem;
    color: #1a202c;
}

.content-wrapper h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #2d3748;
}

.content-wrapper p {
    color: #4a5568;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.content-wrapper ul,
.content-wrapper ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-wrapper li {
    color: #4a5568;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.contact-grid {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-card {
    flex: 1;
    background-color: #f7fafc;
    padding: 2.5rem;
    border-radius: 12px;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-item strong {
    color: #2d3748;
    font-size: 0.9rem;
}

.contact-item span {
    color: #4a5568;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

.thanks-card {
    max-width: 600px;
    background-color: #fff;
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.thanks-card h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.thanks-card p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-selected {
    background-color: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #2b6cb0;
}

.service-selected strong {
    color: #2d3748;
}

.btn-home {
    display: inline-block;
    background-color: #2b6cb0;
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 2rem;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-home:hover {
    background-color: #2c5282;
    transform: scale(1.02);
}

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

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

    .hero-overlay h1 {
        font-size: 2.25rem;
    }

    .hero-overlay p {
        font-size: 1.1rem;
    }

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

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

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

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

    .form-row {
        flex-direction: column;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .value-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}
