* {
    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;
    background-color: #fff;
}

.ad-disclosure {
    background-color: #f5f5f5;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.main-nav {
    background-color: #1a1a1a;
    padding: 0;
    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;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    text-align: center;
    color: #fff;
    padding: 40px;
    background: rgba(0, 0, 0, 0.5);
    max-width: 700px;
}

.hero-overlay h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
}

.intro-section {
    background-color: #f9f9f9;
    padding: 90px 20px;
}

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

.intro-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.benefits-section {
    padding: 100px 20px;
    background-color: #fff;
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-card img {
    width: 100%;
    height: 400px;
}

.benefit-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
}

.benefit-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.science-section {
    background-color: #e8f5e9;
    padding: 80px 20px;
}

.science-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.citation {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.services-preview {
    padding: 100px 20px;
    background-color: #fff;
}

.services-preview h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

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

.services-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 35px;
    background-color: #f9f9f9;
    border-left: 4px solid #4CAF50;
    gap: 30px;
}

.service-info h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #4CAF50;
    white-space: nowrap;
}

.cta-container {
    text-align: center;
    margin-top: 50px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #4CAF50;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #388E3C;
}

.form-section {
    background-color: #1a1a1a;
    padding: 0;
}

.form-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

.form-content {
    flex: 1;
    padding: 80px 60px;
    color: #fff;
}

.form-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.form-content p {
    font-size: 17px;
    margin-bottom: 35px;
    color: #ccc;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.form-group input,
.form-group select {
    padding: 14px;
    font-size: 16px;
    border: 1px solid #444;
    background-color: #2a2a2a;
    color: #fff;
    border-radius: 4px;
}

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

.submit-button {
    padding: 16px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #388E3C;
}

.form-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 600px;
}

.testimonial-section {
    padding: 90px 20px;
    background-color: #f5f5f5;
}

.testimonial-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    padding: 40px;
    background-color: #fff;
    border-left: 5px solid #4CAF50;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 15px;
    color: #333;
}

.testimonial cite {
    font-size: 15px;
    color: #666;
    font-style: normal;
    font-weight: 600;
}

.disclaimer-section {
    padding: 60px 20px;
    background-color: #fff9e6;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

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

.footer-column p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #4CAF50;
}

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

.references li {
    margin-bottom: 10px;
}

.references li a {
    color: #4CAF50;
    text-decoration: none;
    font-size: 13px;
}

.references li a:hover {
    text-decoration: underline;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #fff;
    padding: 25px;
    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: 30px;
}

.cookie-content p {
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #4CAF50;
    text-decoration: none;
}

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

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background-color: #388E3C;
}

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

.cookie-btn.reject:hover {
    background-color: #555;
}

.page-header {
    background-color: #1a1a1a;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

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

.page-header p {
    font-size: 20px;
    color: #ccc;
}

.story-section {
    padding: 100px 20px;
    background-color: #fff;
}

.story-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.story-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.story-image img {
    width: 100%;
    height: 500px;
}

.values-section {
    padding: 90px 20px;
    background-color: #f9f9f9;
}

.values-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.values-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-item {
    padding: 35px;
    background-color: #fff;
    border-left: 5px solid #4CAF50;
}

.value-item h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.team-section {
    padding: 100px 20px;
    background-color: #fff;
}

.team-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.team-grid {
    max-width: 1100px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.team-member {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.member-image {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
}

.team-member h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

.role {
    font-size: 16px;
    color: #4CAF50;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-member p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.facility-section {
    padding: 90px 20px;
    background-color: #f5f5f5;
}

.facility-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.facility-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.facility-image img {
    width: 100%;
    height: 450px;
}

.facility-text h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.facility-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.cta-about {
    padding: 100px 20px;
    background-color: #4CAF50;
    text-align: center;
    color: #fff;
}

.cta-about h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-about p {
    font-size: 19px;
    margin-bottom: 35px;
}

.cta-about .cta-button {
    background-color: #fff;
    color: #4CAF50;
}

.cta-about .cta-button:hover {
    background-color: #f0f0f0;
}

.services-detail {
    padding: 80px 20px;
    background-color: #fff;
}

.service-block {
    max-width: 1100px;
    margin: 0 auto 80px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.service-block.reverse {
    flex-direction: column-reverse;
}

.service-image-large img {
    width: 100%;
    height: 450px;
}

.service-details h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-description {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #444;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 12px 0 12px 30px;
    font-size: 16px;
    color: #555;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 700;
    font-size: 18px;
}

.price-box {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 25px;
    background-color: #f9f9f9;
    border-left: 4px solid #4CAF50;
}

.price {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
}

.period {
    font-size: 16px;
    color: #666;
}

.form-section-alt {
    padding: 90px 20px;
    background-color: #f5f5f5;
}

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.form-intro p {
    font-size: 17px;
    color: #666;
}

.form-section-alt .contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
}

.form-section-alt .form-group label {
    color: #333;
}

.form-section-alt .form-group input,
.form-section-alt .form-group select {
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
}

.contact-layout {
    padding: 80px 20px;
    background-color: #fff;
}

.contact-info-block {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.info-card {
    padding: 50px;
    background-color: #f9f9f9;
}

.info-card h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.info-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #4CAF50;
}

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

.no-link {
    color: #444;
    pointer-events: none;
}

.contact-image img {
    width: 100%;
    height: 400px;
}

.additional-info {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.additional-info h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.transport-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.transport-item {
    padding: 30px;
    background-color: #fff;
    border-left: 4px solid #4CAF50;
}

.transport-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

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

.faq-section {
    padding: 90px 20px;
    background-color: #fff;
}

.faq-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.faq-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.thanks-section {
    padding: 120px 20px;
    background-color: #f9f9f9;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.service-confirmation {
    font-size: 17px;
    color: #4CAF50;
    font-weight: 600;
    margin-bottom: 40px;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #4CAF50;
    color: #fff;
}

.btn-primary:hover {
    background-color: #388E3C;
}

.btn-secondary {
    background-color: #fff;
    color: #4CAF50;
    border: 2px solid #4CAF50;
}

.btn-secondary:hover {
    background-color: #f0f0f0;
}

.next-steps {
    padding: 90px 20px;
    background-color: #fff;
}

.next-steps h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.steps-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-item {
    display: flex;
    gap: 25px;
    padding: 30px;
    background-color: #f9f9f9;
}

.step-number {
    font-size: 32px;
    font-weight: 800;
    color: #4CAF50;
    min-width: 50px;
}

.step-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

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

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

.legal-page h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

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

.legal-page ul,
.legal-page ol {
    margin: 20px 0 20px 30px;
}

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

.legal-page a {
    color: #4CAF50;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cookies-table th {
    background-color: #f5f5f5;
    font-weight: 700;
    color: #1a1a1a;
}

.cookies-table td {
    font-size: 15px;
    color: #444;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }

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

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

    .form-image {
        min-height: 300px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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

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