* {
    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: #333;
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    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;
    margin: 0;
}

.cookie-content a {
    color: #4a90e2;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-accept {
    background: #4caf50;
    color: #fff;
}

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

.btn-reject {
    background: #fff;
    color: #333;
}

.btn-reject:hover {
    background: #f0f0f0;
}

.main-nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4a90e2;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    background: #f5f5f5;
    padding: 5px 12px;
    border-radius: 3px;
}

.hero-section {
    position: relative;
    width: 100%;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 85vh;
    background-color: #2c3e50;
}

.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(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 40px;
}

.hero-overlay h1 {
    font-size: 56px;
    color: #fff;
    max-width: 700px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 22px;
    color: #fff;
    margin-bottom: 35px;
    max-width: 600px;
}

.cta-primary {
    background: #e74c3c;
    color: #fff;
    padding: 16px 45px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
    display: inline-block;
}

.cta-primary:hover {
    background: #c0392b;
}

.intro-section {
    background: #fff;
    padding: 80px 40px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.intro-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.insight-section {
    background: #f8f9fa;
    padding: 90px 0;
}

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

.content-left {
    flex: 1;
    background-color: #ddd;
}

.content-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.content-right {
    flex: 1;
}

.content-right h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.content-right p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.content-right a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
}

.content-right a:hover {
    text-decoration: underline;
}

.testimonial-section {
    background: #2c3e50;
    padding: 70px 40px;
}

.testimonial-section blockquote {
    border-left: none;
    padding: 0;
}

.testimonial-section p {
    font-size: 24px;
    color: #fff;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-section cite {
    font-size: 16px;
    color: #bdc3c7;
    font-style: normal;
}

.services-overview {
    background: #fff;
    padding: 90px 0;
}

.services-overview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 19px;
    color: #666;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 27px);
    min-width: 320px;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #f9f9f9;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 24px;
    margin: 25px 20px 15px;
    color: #2c3e50;
}

.service-card p {
    font-size: 15px;
    margin: 0 20px 15px;
    color: #666;
    line-height: 1.6;
}

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: #e74c3c;
    text-align: center;
    margin: 20px 0 5px;
}

.price-detail {
    text-align: center;
    font-size: 14px;
    color: #999;
    margin: 0 0 25px 0;
}

.btn-select-service {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 25px;
    padding: 14px;
    background: #4a90e2;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #357abd;
}

.form-section {
    background: #ecf0f1;
    padding: 70px 40px;
}

.form-section h2 {
    font-size: 34px;
    margin-bottom: 35px;
    color: #2c3e50;
    text-align: center;
}

.booking-form {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.benefits-section {
    background: #fff;
    padding: 80px 0;
}

.benefits-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}

.benefit-item {
    width: calc(50% - 25px);
    min-width: 300px;
}

.benefit-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #e74c3c;
}

.benefit-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.science-section {
    background: #f8f9fa;
    padding: 70px 40px;
}

.science-section h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.science-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.science-section a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
}

.science-section a:hover {
    text-decoration: underline;
}

.final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 40px;
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 35px;
}

.cta-secondary {
    background: #fff;
    color: #667eea;
    padding: 16px 45px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.3s;
    display: inline-block;
}

.cta-secondary:hover {
    transform: scale(1.05);
}

.main-footer {
    background: #1a1a1a;
    color: #bbb;
    padding: 60px 40px 30px;
}

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

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

.footer-section h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

.footer-section a:hover {
    color: #fff;
}

.references-list {
    list-style: decimal;
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 10px;
    font-size: 13px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #999;
}

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

.contact-page {
    padding: 80px 40px;
    background: #fff;
}

.contact-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #e74c3c;
}

.info-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.about-page {
    padding: 80px 40px;
    background: #fff;
}

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

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-hero p {
    font-size: 20px;
    color: #666;
    line-height: 1.7;
}

.about-content {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.about-text {
    flex: 1.2;
}

.about-text h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    background-color: #ddd;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.team-values {
    background: #f8f9fa;
    padding: 60px 40px;
    margin: 0 -40px;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
    min-width: 280px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #e74c3c;
}

.value-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.legal-page {
    padding: 80px 40px;
    background: #fff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-page li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.thanks-page {
    padding: 120px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.6;
}

.thanks-content a {
    display: inline-block;
    margin-top: 30px;
    background: #fff;
    color: #667eea;
    padding: 14px 40px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.3s;
}

.thanks-content a:hover {
    transform: scale(1.05);
}

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

    .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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

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

    .split-content {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

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

    .benefit-item {
        width: 100%;
    }

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

    .footer-container {
        flex-direction: column;
    }
}