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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #8a7968;
    --accent-color: #d4af37;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

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

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.125rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: lowercase;
    letter-spacing: 0.02em;
}

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

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

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

.nav-cta .btn-primary {
    padding: 0.625rem 1.5rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

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

.btn-large {
    padding: 1.125rem 3rem;
    font-size: 1.125rem;
}

.btn-secondary-large {
    padding: 1.125rem 3rem;
    font-size: 1.125rem;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    padding: 0.875rem 2rem;
    border: 2px solid var(--text-dark);
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

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

.btn-outline-large {
    padding: 1.125rem 3rem;
    font-size: 1.125rem;
}

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 5rem 8%;
    background-color: var(--bg-light);
}

.hero-content {
    max-width: 600px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.trust-item {
    font-size: 0.875rem;
    color: var(--text-light);
    padding-left: 1.5rem;
    position: relative;
}

.trust-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.intro-split {
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-image {
    flex: 1;
    overflow: hidden;
}

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

.intro-content {
    flex: 1;
    padding: 5rem 8%;
}

.intro-content h2 {
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.link-arrow {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link-arrow::after {
    content: "→";
    transition: var(--transition);
}

.link-arrow:hover::after {
    transform: translateX(5px);
}

.services-preview {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--text-light);
}

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card-split {
    display: flex;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.service-card-left {
    flex: 0 0 45%;
    overflow: hidden;
}

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

.service-card-right {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.service-features {
    margin-top: 1.5rem;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.section-cta {
    text-align: center;
    margin-top: 4rem;
}

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

.process-split {
    display: flex;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.process-left {
    flex: 0 0 35%;
}

.process-intro {
    font-size: 1.125rem;
    color: var(--text-light);
}

.process-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.process-step {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

.process-step h3 {
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--text-light);
    margin-bottom: 0;
}

.testimonials-section {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

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

.testimonials-split {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

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

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--text-light);
}

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

.form-split {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.form-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-benefits {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.benefit-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.form-right {
    flex: 1;
}

.main-form {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
}

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

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

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

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

.form-group-checkbox {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-group-checkbox input {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 0.25rem;
}

.form-group-checkbox label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.btn-form-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

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

.trust-indicators {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

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

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

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

.footer-column h3,
.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1.25rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 900;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta span {
    font-weight: 600;
    font-size: 1.125rem;
}

.btn-sticky {
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-sticky:hover {
    background-color: #c49d2e;
}

.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    z-index: 1100;
    max-width: 600px;
    display: none;
}

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

.cookie-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

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

.page-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: stretch;
}

.page-hero-split .hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-hero-split .hero-right {
    flex: 1;
}

.hero-text {
    font-size: 1.25rem;
    color: var(--text-light);
}

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

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

.story-left {
    flex: 1;
}

.story-right {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

.story-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

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

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

.value-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

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

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

.team-left {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

.team-right {
    flex: 1;
}

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

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

.approach-split.reverse {
    flex-direction: row-reverse;
}

.approach-left {
    flex: 1;
}

.approach-right {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

.cta-about,
.cta-services,
.cta-contact {
    padding: 6rem 5%;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

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

.cta-content-center h2 {
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.cta-content-center p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

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

.services-detailed {
    padding: 4rem 5%;
}

.service-detail-split {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 5rem;
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

.service-detail-split:last-of-type {
    border-bottom: none;
}

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

.service-detail-left {
    flex: 0 0 45%;
    overflow: hidden;
    border-radius: 12px;
}

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

.service-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bg-white);
    background-color: var(--accent-color);
    padding: 0.375rem 0.875rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.service-price-large {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0 1.5rem;
}

.service-detail-list {
    margin: 1.5rem 0;
}

.service-detail-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.service-detail-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-add-ons {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

.add-ons-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.add-on-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
}

.add-on-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.add-on-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.add-on-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-color);
}

.contact-info-section {
    padding: 4rem 5%;
}

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

.contact-left {
    flex: 1;
}

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

.contact-method {
    margin-bottom: 2rem;
}

.contact-method h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.contact-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

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

.contact-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-expectations {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-expectations li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.contact-expectations li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.faq-section {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

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

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

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

.faq-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

.thanks-section {
    padding: 6rem 5%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    text-align: center;
    max-width: 800px;
}

.thanks-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.thanks-icon svg {
    color: var(--primary-color);
}

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

.thanks-details {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-next-steps {
    margin-bottom: 3rem;
}

.next-steps-grid {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.next-step {
    flex: 1;
    text-align: left;
}

.next-step .step-number {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.next-step h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.next-step p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 0;
}

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

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

.legal-page {
    padding: 4rem 5%;
    min-height: 70vh;
}

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

.legal-intro {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.legal-content h2 {
    margin-top: 3rem;
    color: var(--primary-color);
}

.legal-content h3 {
    margin-top: 2rem;
    color: var(--primary-color);
}

.legal-content h4 {
    margin-top: 1.5rem;
}

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

.legal-content ul li,
.legal-content ol li {
    list-style: disc;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.legal-content ol li {
    list-style: decimal;
}

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

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

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

.legal-update {
    margin-top: 3rem;
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

@media (max-width: 1024px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.875rem;
    }

    .hero-split,
    .intro-split,
    .process-split,
    .form-split,
    .story-content-split,
    .team-split,
    .approach-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

    .service-card-left,
    .service-detail-left {
        flex: 1;
        min-height: 300px;
    }

    .intro-split.reverse,
    .approach-split.reverse {
        flex-direction: column;
    }

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

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

    .nav-links {
        display: none;
    }

    .trust-grid {
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    h1 {
        font-size: 1.875rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-left,
    .intro-content,
    .service-card-right {
        padding: 3rem 5%;
    }

    .hero-split,
    .page-hero-split {
        min-height: auto;
    }

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

    .btn-large,
    .btn-secondary-large,
    .btn-outline-large {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .sticky-cta {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cookie-banner {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        padding: 1.5rem;
    }

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

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

    .faq-item {
        flex: 1 1 100%;
    }

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