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

:root {
    --primary-green: #2d5f4c;
    --light-green: #4a8065;
    --accent-gold: #d4af37;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f8f8;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.header-transparent,
.header-solid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease;
}

.header-transparent {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header-solid {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 1px;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.9);
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-green);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-green);
}

.nav-toggle {
    display: none;
    background: none;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.hero-visual {
    margin-top: 70px;
    position: relative;
    height: 85vh;
    overflow: hidden;
}

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

.hero-bg {
    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.5));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 2rem;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-text p {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.story-intro,
.narrow-content {
    max-width: 700px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.story-intro h2,
.narrow-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    font-weight: 400;
}

.story-intro p,
.narrow-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}

.visual-block {
    margin: 6rem 0;
    position: relative;
}

.image-text-overlay {
    position: relative;
    height: 70vh;
    background-color: #1a1a1a;
}

.section-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-content {
    position: absolute;
    bottom: 8%;
    left: 8%;
    max-width: 600px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.6);
    padding: 2.5rem;
    backdrop-filter: blur(5px);
}

.overlay-content.dark {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
}

.overlay-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.overlay-content p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.visual-block.alt {
    margin-top: 4rem;
}

.problem-insight {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.split-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.split-image {
    flex: 1;
    background-color: #4a8065;
}

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

.trust-section {
    padding: 5rem 2rem;
}

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

.centered-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

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

.testimonial-inline {
    padding: 4rem 2rem;
    background: var(--primary-green);
    color: var(--white);
}

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

.testimonial-card p {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-size: 1rem;
    font-style: normal;
    opacity: 0.9;
}

.collections-preview {
    padding: 6rem 2rem;
    background: var(--light-bg);
}

.collections-header {
    text-align: center;
    margin-bottom: 4rem;
}

.collections-header h2 {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

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

.collection-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.collection-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.collection-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin: 1.5rem 0;
}

.btn-select,
.btn-primary,
.btn-secondary {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-select,
.btn-primary {
    background: var(--primary-green);
    color: var(--white);
}

.btn-select:hover,
.btn-primary:hover {
    background: var(--light-green);
    transform: translateY(-2px);
}

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

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

.form-section {
    padding: 5rem 2rem;
    background: var(--white);
}

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

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

.form-wrapper > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary-green);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: var(--light-green);
}

.form-disclaimer {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 1.5rem;
}

.form-disclaimer a {
    color: var(--primary-green);
    text-decoration: underline;
}

.final-assurance {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.assurance-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-green);
}

.assurance-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.assurance-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    text-align: center;
}

.assurance-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-green);
}

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

.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 4rem 2rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--accent-gold);
}

.footer-section p,
.footer-section ul {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #ccc;
}

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

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

.footer-section ul li a:hover {
    color: var(--accent-gold);
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #bbb;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    color: var(--white);
    padding: 1.5rem 2rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
}

.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.5;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 4px;
    font-weight: 500;
}

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

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

.btn-cookie:hover {
    background: var(--light-green);
}

.btn-cookie-alt:hover {
    background: rgba(255, 255, 255, 0.1);
}

.page-hero {
    margin-top: 70px;
}

.page-hero .hero-image-wrapper {
    height: 50vh;
}

.story-content {
    padding: 4rem 2rem;
}

.values-section {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

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

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

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

.value-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.team-section,
.process-section {
    padding: 4rem 2rem;
}

.team-container,
.process-container {
    max-width: 900px;
    margin: 0 auto;
}

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

.team-container p,
.process-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    flex: 1 1 calc(50% - 2rem);
    min-width: 250px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-green);
}

.process-step p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.cta-section {
    padding: 5rem 2rem;
    background: var(--primary-green);
    color: var(--white);
}

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

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--accent-gold);
    color: var(--dark-bg);
}

.cta-buttons .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

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

.services-intro {
    padding: 3rem 2rem;
    text-align: center;
}

.services-detailed {
    padding: 2rem 2rem 5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
}

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

.service-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

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

.service-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-content ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    position: relative;
    font-size: 0.95rem;
}

.service-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 1rem;
    color: var(--text-light);
}

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

.service-guarantee {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

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

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

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

.guarantee-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 250px;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
}

.guarantee-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-green);
}

.guarantee-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.contact-hero {
    margin-top: 70px;
    padding: 5rem 2rem;
    background: var(--light-bg);
    text-align: center;
}

.contact-intro h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.contact-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.contact-details {
    padding: 5rem 2rem;
}

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

.contact-info {
    flex: 1;
}

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

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-green);
}

.info-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.info-block .note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.contact-map {
    flex: 1;
    background-color: #e0e0e0;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    font-size: 1.2rem;
    text-align: center;
}

.contact-faq {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

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

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

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

.faq-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-green);
}

.faq-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.contact-cta {
    padding: 4rem 2rem;
}

.legal-page {
    margin-top: 70px;
    padding: 5rem 2rem;
}

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

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

.update-date {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.legal-container h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--light-green);
}

.legal-container h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.legal-container p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-container li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-container a {
    color: var(--primary-green);
    text-decoration: underline;
}

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

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

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

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--light-bg);
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.thanks-content > p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-info {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 6px;
    margin: 2rem 0;
}

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

.thanks-extra {
    margin-top: 3rem;
    text-align: left;
}

.thanks-extra h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.thanks-extra ul {
    list-style: none;
}

.thanks-extra li {
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
}

.thanks-extra a {
    color: var(--primary-green);
    text-decoration: underline;
}

.footer-minimal {
    background: var(--dark-bg);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

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

    .nav-toggle {
        display: block;
    }

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

    .hero-text p {
        font-size: 1.2rem;
    }

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

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

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .collection-card,
    .value-card,
    .guarantee-item,
    .faq-item,
    .assurance-item {
        flex: 1 1 100%;
    }

    .thanks-content {
        padding: 2rem 1.5rem;
    }

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

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .collections-header h2,
    .cta-content h2,
    .legal-container h1 {
        font-size: 2rem;
    }

    .overlay-content {
        padding: 1.5rem;
    }

    .overlay-content h3 {
        font-size: 1.5rem;
    }
}