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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #8b9d93;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --background-light: #f8f7f5;
    --background-white: #ffffff;
    --border-color: #e0ddd9;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-white);
}

.ad-disclosure {
    background-color: var(--background-light);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    background-color: var(--background-white);
}

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

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.hero-minimal {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem 5%;
    background-color: var(--background-light);
    position: relative;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin-bottom: 4rem;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 300;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
}

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

.intro-centered {
    padding: 8rem 5%;
    background-color: var(--background-white);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.science-section {
    padding: 8rem 5%;
    background-color: var(--background-light);
}

.science-grid {
    display: flex;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.science-image {
    flex: 1;
    background-color: var(--secondary-color);
}

.science-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.science-content {
    flex: 1;
    padding: 2rem;
}

.science-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.science-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

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

.citation:hover {
    opacity: 0.7;
}

.services-preview {
    padding: 8rem 5%;
    background-color: var(--background-white);
}

.services-preview h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 6rem;
    color: var(--text-dark);
}

.services-minimal-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    flex: 0 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: var(--background-light);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

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

.service-image-container {
    width: 100%;
    height: 250px;
    margin-bottom: 2rem;
    overflow: hidden;
    background-color: var(--secondary-color);
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.btn-service {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--background-white);
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #234a3d;
}

.approach-section {
    padding: 8rem 5%;
    background-color: var(--background-light);
}

.approach-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.approach-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.approach-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.testimonials-minimal {
    padding: 8rem 5%;
    background-color: var(--background-white);
}

.testimonial-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.testimonial {
    flex: 1;
    padding: 3rem;
    background-color: var(--background-light);
}

.testimonial p {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.testimonial-author {
    font-size: 1rem;
    color: var(--text-light);
    font-style: normal;
}

.ingredients-section {
    padding: 8rem 5%;
    background-color: var(--background-light);
}

.ingredients-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 5rem;
    color: var(--primary-color);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.ingredients-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ingredient-item {
    flex: 0 1 calc(50% - 1.5rem);
    padding: 2.5rem;
    background-color: var(--background-white);
}

.ingredient-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.ingredient-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.cta-minimal {
    padding: 10rem 5%;
    background-color: var(--background-white);
    text-align: center;
}

.cta-minimal h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.cta-minimal p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.btn-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--primary-color);
    color: var(--background-white);
    text-decoration: none;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #234a3d;
}

.btn-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--background-light);
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.1rem;
    border: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

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

.form-section {
    padding: 8rem 5%;
    background-color: var(--background-light);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--background-white);
    padding: 4rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--background-light);
}

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

.form-group input[readonly] {
    background-color: var(--background-light);
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background-color: var(--primary-color);
    color: var(--background-white);
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #234a3d;
}

.disclaimer-section {
    padding: 6rem 5%;
    background-color: var(--background-white);
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem;
    background-color: var(--background-light);
    border-left: 4px solid var(--accent-color);
}

.disclaimer-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

.footer-minimal {
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 5rem 5% 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-section a {
    display: block;
    color: var(--background-white);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-references {
    max-width: 1400px;
    margin: 0 auto 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-references h4 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.footer-references ol {
    margin-left: 1.5rem;
}

.footer-references li {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

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

.footer-references a:hover {
    opacity: 0.7;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--background-white);
    border-top: 2px solid var(--primary-color);
    padding: 2rem 5%;
    z-index: 1000;
    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;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 2rem;
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background-color: #234a3d;
}

.btn-cookie-reject {
    background-color: var(--background-light);
    color: var(--text-dark);
}

.btn-cookie-reject:hover {
    background-color: var(--border-color);
}

.page-header {
    padding: 8rem 5% 4rem;
    background-color: var(--background-light);
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.about-intro {
    padding: 6rem 5%;
    background-color: var(--background-white);
}

.about-content-wide {
    max-width: 1000px;
    margin: 0 auto;
}

.about-lead {
    font-size: 1.5rem;
    line-height: 1.8;
    text-align: center;
    color: var(--text-dark);
    font-weight: 300;
}

.vision-section {
    padding: 8rem 5%;
    background-color: var(--background-light);
}

.vision-grid {
    display: flex;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.vision-content {
    flex: 1;
}

.vision-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.vision-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.vision-image {
    flex: 1;
    background-color: var(--secondary-color);
}

.vision-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.values-section {
    padding: 8rem 5%;
    background-color: var(--background-white);
}

.values-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 5rem;
    color: var(--text-dark);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.value-item {
    flex: 0 1 calc(50% - 1.5rem);
    padding: 3rem;
    background-color: var(--background-light);
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.approach-detail {
    padding: 8rem 5%;
    background-color: var(--background-light);
}

.approach-split {
    display: flex;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.approach-image-container {
    flex: 1;
    background-color: var(--secondary-color);
}

.approach-image-container img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.approach-text {
    flex: 1;
}

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

.approach-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.mission-section {
    padding: 8rem 5%;
    background-color: var(--background-white);
}

.mission-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-content-centered h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.mission-content-centered p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.business-model-section {
    padding: 8rem 5%;
    background-color: var(--background-light);
}

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

.business-model-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.business-model-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.cta-about {
    padding: 8rem 5%;
    background-color: var(--background-white);
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.services-intro {
    padding: 4rem 5%;
    background-color: var(--background-white);
}

.services-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
}

.services-detailed {
    padding: 4rem 5%;
    background-color: var(--background-white);
}

.service-detail-card {
    display: flex;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 8rem;
    padding: 4rem;
    background-color: var(--background-light);
}

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

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

.service-detail-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

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

.feature-item {
    padding: 0.75rem 1rem;
    background-color: var(--background-white);
    font-size: 0.95rem;
    color: var(--text-dark);
}

.service-pricing {
    margin-bottom: 2rem;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 300;
    color: var(--accent-color);
}

.combination-section {
    padding: 8rem 5%;
    background-color: var(--background-light);
}

.combination-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.combination-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.combination-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.contact-info-section {
    padding: 6rem 5%;
    background-color: var(--background-white);
}

.contact-grid {
    display: flex;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info-block {
    flex: 1;
}

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

.contact-info-block > p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--text-light);
}

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

.contact-detail-item h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-detail-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

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

.contact-image-block img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.contact-approach {
    padding: 8rem 5%;
    background-color: var(--background-light);
}

.approach-content-center {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.approach-content-center h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.approach-content-center p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.location-section {
    padding: 8rem 5%;
    background-color: var(--background-white);
}

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

.location-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.location-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.thanks-section {
    padding: 8rem 5%;
    background-color: var(--background-white);
    min-height: 70vh;
}

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

.thanks-content h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.service-confirmation {
    margin-bottom: 3rem;
}

.service-selected {
    font-size: 1.2rem;
    padding: 2rem;
    background-color: var(--background-light);
    color: var(--text-dark);
}

.thanks-next-steps {
    margin-bottom: 4rem;
    padding: 4rem;
    background-color: var(--background-light);
}

.thanks-next-steps h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.steps-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.step-item {
    flex: 1;
    max-width: 300px;
}

.step-item h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.step-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.thanks-info {
    margin-bottom: 3rem;
}

.thanks-info p {
    font-size: 1.1rem;
    color: var(--text-light);
}

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

.legal-page {
    padding: 4rem 5%;
    background-color: var(--background-white);
}

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

.legal-content h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

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

.legal-content li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

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

.legal-content a:hover {
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .science-grid,
    .vision-grid,
    .approach-split,
    .contact-grid {
        flex-direction: column;
        gap: 3rem;
    }

    .service-detail-card {
        flex-direction: column;
        gap: 3rem;
    }

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

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

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

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

    .value-item,
    .ingredient-item {
        flex: 1 1 100%;
    }

    .testimonial-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .footer-content {
        flex-wrap: wrap;
    }

    .footer-section {
        flex: 0 1 calc(50% - 2rem);
    }
}

@media (max-width: 768px) {
    .nav-minimal {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .hero-content h1 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .services-preview h2,
    .values-section h2,
    .cta-minimal h2 {
        font-size: 2rem;
    }

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

    .footer-section {
        flex: 1 1 100%;
    }
}