:root {
    --primary-color: #2c5f7c;
    --primary-dark: #1a3f54;
    --accent-color: #e67e22;
    --text-color: #2c3e50;
    --text-light: #7f8c8d;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #34495e;
    --border-color: #dfe6e9;
    --success-color: #27ae60;
    --error-color: #e74c3c;
}

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: var(--success-color);
    color: #ffffff;
}

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

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.main-nav {
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

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

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.story-hero {
    margin-bottom: 4rem;
}

.hero-content {
    max-width: 720px;
    margin: 0 auto 2rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    font-weight: 800;
}

.hero-lead {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.6;
}

.hero-image {
    margin: 0 auto;
    max-width: 900px;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.story-intro,
.problem-section,
.method-section,
.trust-section,
.benefits-section,
.services-preview,
.form-section,
.about-intro,
.services-intro,
.services-list,
.contact-info-section,
.urgency-section,
.results-section,
.mission-section,
.values-section,
.team-section,
.comparison-section,
.faq-section,
.additional-info,
.map-section {
    margin-bottom: 4rem;
}

.narrow-text {
    max-width: 720px;
    margin: 0 auto;
}

.narrow-text h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.narrow-text h3 {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.narrow-text h4 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-weight: 600;
}

.narrow-text p {
    margin-bottom: 1.5rem;
}

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

.narrow-text li {
    margin-bottom: 0.8rem;
}

.inline-image {
    margin: 3rem 0;
}

.inline-image img {
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.inline-cta-section {
    margin: 4rem 0;
}

.cta-inline {
    max-width: 720px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.cta-inline h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.cta-inline p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.cta-link {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

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

.story-cta,
.cta-section,
.final-cta {
    margin: 4rem 0;
}

.cta-box,
.cta-box-alt {
    max-width: 720px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(44, 95, 124, 0.3);
}

.cta-box-alt {
    background: var(--bg-light);
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.cta-box h3,
.cta-box-alt h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-box p,
.cta-box-alt p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cta-box a {
    color: #ffffff;
    text-decoration: underline;
}

.cta-box-alt a {
    color: var(--accent-color);
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.method-list,
.training-list {
    list-style: none;
    padding-left: 0;
}

.method-list li,
.training-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
}

.method-list li::before,
.training-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.testimonial-section,
.testimonials-list {
    margin: 4rem 0;
}

.testimonial-card {
    max-width: 720px;
    margin: 2rem auto;
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-card blockquote {
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.testimonial-card cite {
    display: block;
    font-style: normal;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
}

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

.benefit-item {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 6px;
    border-left: 3px solid var(--accent-color);
}

.benefit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.benefit-item p {
    margin: 0;
    color: var(--text-color);
}

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

.service-card {
    background-color: var(--bg-color);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-card.featured {
    border-color: var(--accent-color);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.15);
}

.service-card .badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

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

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

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

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

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

.select-service {
    width: 100%;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.urgency-box {
    max-width: 720px;
    margin: 0 auto;
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

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

.urgency-box p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.main-form {
    max-width: 600px;
    margin: 3rem auto 0;
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px 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 select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: normal;
    font-size: 0.9rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.submit-button {
    width: 100%;
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.main-footer {
    background-color: var(--bg-dark);
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

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

.footer-brand h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #bdc3c7;
    font-size: 0.95rem;
}

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

.footer-column h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

.footer-column a {
    color: #bdc3c7;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #bdc3c7;
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 1rem 2rem;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: none;
    animation: slideUp 0.4s ease;
}

.sticky-cta.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

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

.sticky-cta-button {
    background-color: #ffffff;
    color: var(--accent-color);
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background-color: var(--bg-light);
    transform: scale(1.05);
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-header h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 800;
}

.header-lead {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.value-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: var(--primary-color);
}

.value-item p {
    margin: 0;
    color: var(--text-color);
}

.service-detail-card {
    background-color: var(--bg-color);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.service-detail-card.featured-card {
    border-color: var(--accent-color);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.15);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 2rem;
}

.service-header h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    flex: 1;
}

.service-price-large {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.service-body p {
    margin-bottom: 1.5rem;
}

.service-outcomes,
.service-structure {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.service-outcomes li,
.service-structure li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.7rem;
}

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

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

.comparison-table {
    overflow-x: auto;
    margin-top: 2rem;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-color);
}

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

.comparison-table th {
    background-color: var(--primary-color);
    color: #ffffff;
    font-weight: 600;
}

.comparison-table tr:nth-child(even) {
    background-color: var(--bg-light);
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

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

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 6px;
}

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

.contact-item p {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.contact-item small {
    color: var(--text-light);
    font-size: 0.9rem;
}

.map-placeholder {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    border: 2px dashed var(--border-color);
}

.map-placeholder p {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

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

.thanks-info {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.thanks-next-steps {
    text-align: left;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

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

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

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

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

.thanks-cta p {
    margin-bottom: 1.5rem;
}

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.thanks-link {
    display: inline-block;
    padding: 1rem;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-link:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.thanks-contact {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.legal-date {
    color: var(--text-light);
    font-style: italic;
}

.legal-content {
    line-height: 1.8;
}

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

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

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

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

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

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

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

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

.gdpr-table th,
.cookies-table th {
    background-color: var(--primary-color);
    color: #ffffff;
    font-weight: 600;
}

.gdpr-table tr:nth-child(even),
.cookies-table tr:nth-child(even) {
    background-color: var(--bg-light);
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
    }

    .benefits-grid,
    .values-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        flex-direction: row;
    }

    .sticky-cta-content {
        flex-direction: row;
    }

    .thanks-links {
        flex-direction: row;
        justify-content: center;
    }

    .contact-details {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    body {
        font-size: 16px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-color);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

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

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--border-color);
    }

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

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

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

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

    .service-header {
        flex-direction: column;
        gap: 1rem;
    }

    .service-price-large {
        font-size: 1.4rem;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

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

    .sticky-cta-content span {
        font-size: 1rem;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.6rem 0.4rem;
    }
}
