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

:root {
    --primary-color: #4A90E2;
    --secondary-color: #E74C3C;
    --accent-color: #27AE60;
    --text-dark: #2C3E50;
    --text-light: #555;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --border-color: #E1E8ED;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

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(--bg-white);
    overflow-x: hidden;
}

.main-nav {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

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

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

.hero-banner {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #E8F4F8 0%, #F0F8FF 100%);
    padding: 4rem 2rem;
}

.hero-banner .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 700px;
}

.hero-visual {
    max-width: 1200px;
    margin: 3rem auto 0;
}

.hero-image-placeholder {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.hero-image-placeholder svg {
    width: 100%;
    height: auto;
}

.cta-primary,
.cta-secondary,
.cta-submit {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.cta-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cta-primary:hover {
    background-color: #357ABD;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.cta-submit {
    background-color: var(--accent-color);
    color: var(--bg-white);
    width: 100%;
}

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

.cta-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}

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

.story-intro,
.insight-reveal,
.testimonials-flow,
.social-proof,
.urgency-section,
.final-reassurance {
    padding: 5rem 2rem;
}

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

.narrow-content h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.inline-cta {
    margin-top: 2.5rem;
}

.split-visual {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

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

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.split-image {
    flex: 1;
}

.split-image svg {
    width: 100%;
    height: auto;
}

.problem-amplification {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #FFF5E6 0%, #FFE4E1 100%);
}

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

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.card-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.problem-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.insight-intro {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.insight-title {
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.insight-list {
    list-style: none;
    padding-left: 0;
}

.insight-list li {
    font-size: 1.2rem;
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
}

.insight-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 800;
    font-size: 1.4rem;
}

.trust-builder {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
}

.trust-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.trust-text {
    flex: 1;
}

.trust-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.benefits-list {
    list-style: none;
    padding-left: 0;
}

.benefits-list li {
    font-size: 1.1rem;
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
}

.benefits-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 800;
}

.trust-visual {
    flex: 1;
}

.trust-visual svg {
    width: 100%;
    height: auto;
}

.testimonials-flow {
    background-color: var(--bg-light);
}

.testimonial-block {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

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

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

.centered {
    text-align: center;
}

.benefits-deep {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #F0F8FF 0%, #E8F4F8 100%);
}

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

.benefit-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.benefit-icon {
    margin-bottom: 1.5rem;
}

.benefit-icon svg {
    width: 80px;
    height: 80px;
}

.benefit-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.social-proof {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.social-stat {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1rem 0;
}

.collections-showcase {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
}

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

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

.collection-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

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

.collection-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.collection-image svg {
    width: 100%;
    height: 100%;
}

.collection-card h3 {
    font-size: 1.6rem;
    margin: 1.5rem 1.5rem 1rem;
    color: var(--text-dark);
}

.collection-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 1.5rem 1.5rem;
}

.price-reveal {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 1.5rem;
}

.cta-select {
    display: block;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-select:hover {
    background-color: #357ABD;
}

.urgency-section {
    background-color: #FFF5E6;
}

.urgency-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.order-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #E8F4F8 0%, #F0FFF0 100%);
}

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

.form-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.order-form {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

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

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

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

.guarantee-list {
    list-style: none;
    padding: 0;
    font-size: 1.2rem;
}

.guarantee-list li {
    padding: 0.8rem 0;
    color: var(--text-dark);
}

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

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

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

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

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bbb;
}

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

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

.footer-column a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #bbb;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta-button {
    display: block;
    padding: 1.2rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
}

.sticky-cta-button:hover {
    background-color: #C0392B;
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    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;
    margin: 0;
}

.cookie-content a {
    color: var(--primary-color);
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

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

.page-header {
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, #E8F4F8 0%, #F0F8FF 100%);
    text-align: center;
}

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

.lead {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.about-content,
.services-intro,
.contact-content {
    padding: 4rem 2rem;
}

.content-block {
    margin-bottom: 4rem;
}

.content-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.content-visual {
    margin: 3rem 0;
}

.content-visual svg {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 0 auto;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

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

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

.process-list,
.differences-list {
    padding-left: 1.5rem;
}

.process-list li,
.differences-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.stats-section {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.cta-block {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    margin-top: 4rem;
}

.cta-block h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.services-detailed {
    padding: 4rem 2rem;
}

.service-detail {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 3rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

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

.service-image {
    flex: 1;
}

.service-image svg {
    width: 100%;
    height: auto;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.service-info h4 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    font-size: 1rem;
    padding: 0.5rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-light);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 800;
}

.service-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #FFF5E6;
    border-radius: 6px;
    font-size: 1rem;
}

.guarantee-section {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

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

.guarantee-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

.guarantee-item p {
    color: var(--text-light);
}

.cta-final {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #357ABD 100%);
    color: var(--bg-white);
}

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

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

.cta-final .cta-primary {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.cta-final .cta-primary:hover {
    background-color: var(--bg-light);
}

.contact-grid {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info-section,
.map-section {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-icon svg {
    width: 60px;
    height: 60px;
}

.contact-details h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.contact-details p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details .note {
    font-size: 0.9rem;
    font-style: italic;
}

.info-box {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.info-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.info-box p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.map-placeholder svg {
    width: 100%;
    height: 100%;
}

.map-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-light);
}

.why-contact {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.help-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.help-item {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

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

.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #E8F4F8 0%, #F0FFF0 100%);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.thanks-hero {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #F0FFF0 0%, #E8F4F8 100%);
}

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

.thanks-icon svg {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    display: block;
}

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-light);
}

.thanks-details {
    padding: 4rem 2rem;
}

.info-card {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.info-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.next-steps li {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.next-steps strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

.service-selected {
    background-color: #FFF5E6;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.reassurance-box {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.reassurance-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.reassurance-list {
    list-style: none;
    padding-left: 0;
}

.reassurance-list li {
    font-size: 1.1rem;
    padding: 0.6rem 0;
    color: var(--text-dark);
}

.continue-browsing {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.continue-browsing h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.continue-browsing p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.contact-support {
    padding: 3rem 2rem;
}

.contact-support h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-support p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-email {
    font-size: 1.3rem;
}

.contact-email a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-email a:hover {
    text-decoration: underline;
}

.legal-page {
    padding: 4rem 2rem;
}

.last-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

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

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

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

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        box-shadow: var(--shadow-md);
        padding: 1rem 2rem;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .split-content,
    .trust-content,
    .service-detail {
        flex-direction: column;
    }

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

    .cards-grid,
    .benefits-grid,
    .collection-grid {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

    .insight-title {
        font-size: 2.2rem;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

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

    .lead {
        font-size: 1.1rem;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

    .stats-section {
        gap: 2rem;
    }
}

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

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

    .section-title {
        font-size: 1.6rem;
    }

    .narrow-content h2 {
        font-size: 1.8rem;
    }

    .cta-primary,
    .cta-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .order-form {
        padding: 2rem 1.5rem;
    }
}