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

:root {
    --color-primary: #2c3e50;
    --color-secondary: #3498db;
    --color-accent: #e74c3c;
    --color-success: #2ecc71;
    --color-dark: #1a1a1a;
    --color-light: #f8f9fa;
    --color-gray: #7f8c8d;
    --color-border: #dfe6e9;
    --max-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
}

.btn-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.nav-floating {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 2rem;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-primary);
}

.nav-disclosure {
    font-size: 0.85rem;
    color: var(--color-gray);
    font-style: italic;
    padding: 0.25rem 0.75rem;
    background-color: var(--color-light);
    border-radius: 4px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

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

.nav-links a:hover {
    color: var(--color-secondary);
}

.hero-immersive {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    max-width: 900px;
    line-height: 1.2;
}

.hero-subtext {
    font-size: 1.4rem;
    max-width: 700px;
    opacity: 0.95;
}

.story-opener {
    padding: var(--spacing-xl) 2rem;
    background-color: var(--color-light);
}

.story-container {
    max-width: 720px;
    margin: 0 auto;
}

.story-lead {
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--color-primary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.story-container p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.insight-reveal {
    padding: var(--spacing-xl) 2rem;
    background-color: white;
}

.insight-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.insight-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.insight-visual {
    flex: 1;
    background-color: var(--color-light);
}

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

.citation {
    color: var(--color-secondary);
    font-weight: 600;
    text-decoration: none;
}

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

.trust-building {
    padding: var(--spacing-xl) 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.trust-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.trust-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.trust-card {
    flex: 1;
    min-width: 280px;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.trust-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.trust-card p {
    line-height: 1.7;
}

.testimonial-flow {
    padding: var(--spacing-xl) 2rem;
    background-color: var(--color-light);
}

.testimonial-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonial {
    background-color: white;
    padding: 2.5rem;
    border-left: 4px solid var(--color-secondary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #333;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--color-gray);
}

.benefits-reveal {
    padding: var(--spacing-xl) 2rem;
    background-color: white;
}

.benefits-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.benefits-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-primary);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.benefit-item {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.benefit-item.reverse {
    flex-direction: row-reverse;
}

.benefit-item img {
    width: 45%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: var(--color-light);
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.benefit-content p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.products-showcase {
    padding: var(--spacing-xl) 2rem;
    background-color: var(--color-light);
}

.products-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.products-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.products-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-gray);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: calc(33.333% - 1.5rem);
    min-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: var(--color-light);
}

.product-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 1rem;
    color: var(--color-primary);
}

.product-card p {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.6;
}

.product-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-accent);
    padding: 0 1.5rem;
    margin: 1.5rem 0;
}

.btn-select-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background-color: var(--color-secondary);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.cta-primary,
.cta-secondary {
    padding: var(--spacing-lg) 2rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    text-align: center;
    color: white;
}

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: white;
    color: var(--color-accent);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.order-form-section {
    padding: var(--spacing-xl) 2rem;
    background-color: white;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-primary);
}

.order-form {
    background-color: var(--color-light);
    padding: 2.5rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background-color: var(--color-accent);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.scientific-references {
    padding: var(--spacing-md) 2rem;
    background-color: var(--color-light);
    border-top: 1px solid var(--color-border);
}

.references-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.references-container h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.references-list {
    padding-left: 1.5rem;
}

.references-list li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.references-list a {
    color: var(--color-secondary);
    text-decoration: none;
}

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

.disclaimer-section {
    padding: var(--spacing-md) 2rem;
    background-color: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

.disclaimer-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #856404;
    text-align: justify;
}

.footer {
    background-color: var(--color-primary);
    color: white;
    padding: var(--spacing-lg) 2rem var(--spacing-md);
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-column p,
.footer-column ul {
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
}

.page-hero-simple {
    padding: var(--spacing-lg) 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    text-align: center;
    color: white;
}

.hero-content-centered h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content-centered p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-story,
.services-intro {
    padding: var(--spacing-xl) 2rem;
    background-color: white;
}

.about-story h2,
.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--color-primary);
}

.intro-container {
    max-width: 900px;
    margin: 0 auto;
}

.intro-container p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-approach {
    padding: var(--spacing-xl) 2rem;
    background-color: var(--color-light);
}

.approach-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.approach-image {
    flex: 1;
    background-color: white;
}

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

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.approach-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-values {
    padding: var(--spacing-xl) 2rem;
    background-color: white;
}

.values-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.values-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-primary);
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--color-light);
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.value-card p {
    line-height: 1.7;
    color: #555;
}

.about-impact {
    padding: var(--spacing-xl) 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.impact-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.impact-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
}

.impact-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

.impact-text {
    font-size: 1.15rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-commitment {
    padding: var(--spacing-xl) 2rem;
    background-color: var(--color-light);
}

.commitment-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.commitment-text {
    flex: 1;
}

.commitment-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.commitment-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.commitment-image {
    flex: 1;
    background-color: white;
}

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

.services-detailed {
    padding: var(--spacing-xl) 2rem;
    background-color: white;
}

.services-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.service-full {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.service-full.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: var(--color-light);
}

.service-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.service-details p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0 0.5rem 1.8rem;
    position: relative;
    line-height: 1.6;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-accent);
    margin: 1.5rem 0;
}

.services-guarantee {
    padding: var(--spacing-lg) 2rem;
    background-color: var(--color-light);
}

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

.guarantee-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.guarantee-container p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.contact-info-section {
    padding: var(--spacing-xl) 2rem;
    background-color: white;
}

.contact-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-main {
    flex: 1;
}

.contact-main h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--color-primary);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

.contact-item p {
    line-height: 1.7;
    color: #555;
}

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--color-light);
    border-left: 4px solid var(--color-secondary);
}

.contact-note p {
    margin: 0;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
    background-color: var(--color-light);
}

.contact-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.contact-faq {
    padding: var(--spacing-xl) 2rem;
    background-color: var(--color-light);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--color-primary);
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.faq-item p {
    line-height: 1.7;
    color: #555;
}

.contact-cta {
    padding: var(--spacing-lg) 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    text-align: center;
    color: white;
}

.thanks-section {
    padding: var(--spacing-xl) 2rem;
    background-color: var(--color-light);
    min-height: 70vh;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--color-success);
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #555;
}

.selected-service-info {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--color-success);
}

.thanks-next-steps {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    text-align: center;
}

.steps-list {
    padding-left: 1.5rem;
}

.steps-list li {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

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

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

.thanks-contact {
    font-size: 1.1rem;
    color: #555;
}

.legal-page {
    padding: var(--spacing-xl) 2rem;
    background-color: white;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.legal-update {
    color: var(--color-gray);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--color-secondary);
}

.legal-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0 1rem 1.5rem;
    line-height: 1.8;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: var(--color-secondary);
    text-decoration: none;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

.cookies-table th {
    background-color: var(--color-light);
    font-weight: 600;
    color: var(--color-primary);
}

@media (max-width: 1024px) {
    .insight-wrapper,
    .approach-wrapper,
    .commitment-wrapper,
    .contact-container,
    .service-full {
        flex-direction: column;
    }

    .benefit-item,
    .benefit-item.reverse {
        flex-direction: column;
    }

    .benefit-item img {
        width: 100%;
    }

    .product-card {
        width: calc(50% - 1rem);
    }
}

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

    .hero-subtext {
        font-size: 1.1rem;
    }

    .nav-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .product-card {
        width: 100%;
    }

    .impact-stats {
        gap: 2rem;
    }

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

    .cookie-actions {
        justify-content: center;
    }
}