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

:root {
    --primary-color: #2d5a3f;
    --secondary-color: #5a8f6e;
    --accent-color: #f4a261;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --background-light: #f9f9f9;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

.ad-disclosure {
    background-color: #fef3e2;
    color: var(--text-dark);
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #f4d9a6;
}

.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow);
    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;
}

.brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
        display: none;
    }

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

    .hamburger {
        display: flex;
    }
}

.hero-card {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #e8f1ed;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-content-card {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
}

.hero-content-card h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content-card p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.card-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: var(--background-light);
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

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

.info-card p {
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    cursor: pointer;
}

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

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

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

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

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

.science-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background-color: #f0f7f4;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.science-card h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.science-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.citation {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.citation:hover {
    color: var(--secondary-color);
}

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

.form-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.form-card > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

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

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

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

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

.submit-button {
    padding: 14px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background-color: var(--secondary-color);
}

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

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fef9f3;
    border: 1px solid #f4d9a6;
    border-radius: 8px;
}

.disclaimer-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.disclaimer-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 50px 0 20px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-col p {
    line-height: 1.7;
    opacity: 0.9;
}

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

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

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.references {
    padding-left: 20px;
}

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

.references a {
    color: var(--white);
    text-decoration: underline;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.references a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    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;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

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

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

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

.cookie-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

.page-header {
    padding: 60px 0;
    background-color: var(--background-light);
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

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

.about-card-large {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.about-card-large img {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    object-fit: cover;
    max-height: 400px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: var(--background-light);
    border-radius: 10px;
}

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

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    max-width: 800px;
    margin: 0 auto;
}

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

.team-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.service-detail-card {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
}

.service-detail-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

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

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

.service-detail-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.cta-link {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-link:hover {
    background-color: var(--secondary-color);
}

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

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

.contact-info-card {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-map-card {
    flex: 1;
    min-width: 300px;
}

.contact-map-card img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

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

.legal-content h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.legal-section ul {
    margin-left: 25px;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s;
}

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

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

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

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

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

.thanks-card p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.thanks-details {
    margin: 25px 0;
    padding: 20px;
    background-color: var(--background-light);
    border-radius: 8px;
}

.back-button {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.back-button:hover {
    background-color: var(--secondary-color);
}

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

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

    .card-grid,
    .values-grid {
        flex-direction: column;
    }

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

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

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