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

:root {
    --primary-color: #2c5f8d;
    --secondary-color: #1a3a52;
    --accent-color: #e67e22;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #ddd;
    --success-color: #4CAF50;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-color);
    font-size: 18px;
    background: #fff;
}

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

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

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

.main-nav {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 58, 82, 0.97);
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #ffd700;
}

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

.btn-primary,
.btn-secondary {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--accent-color);
    color: #fff;
}

.btn-primary:hover {
    background: #d35400;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    display: none;
}

.sticky-cta.show {
    display: block;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.btn-cta {
    background: var(--accent-color);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
    display: inline-block;
}

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

.editorial-content {
    background: #fff;
}

.hero-editorial {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
}

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

.hero-text-center h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.subtitle {
    font-size: 1.4rem;
    color: #666;
    font-weight: 400;
    line-height: 1.5;
}

.hero-image-wrapper {
    margin: 2rem 0;
    overflow: hidden;
    border-radius: 4px;
}

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

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.content-narrow h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    color: var(--secondary-color);
    line-height: 1.3;
}

.content-narrow h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--secondary-color);
}

.content-narrow p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

.inline-quote {
    border-left: 4px solid var(--accent-color);
    padding-left: 2rem;
    margin: 2.5rem 0;
    font-style: italic;
    font-size: 1.2rem;
    color: #555;
}

.testimonial-quote {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin: 2.5rem 0;
}

.testimonial-quote p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-quote cite {
    font-style: normal;
    color: #666;
    font-size: 0.95rem;
}

.testimonial-full {
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem 0 1.5rem 2rem;
    margin: 2rem 0;
    background: #f9f9f9;
}

.testimonial-full p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 0.8rem;
}

.testimonial-full cite {
    font-style: normal;
    font-size: 0.9rem;
    color: #666;
}

.image-break {
    margin: 4rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.image-break img {
    width: 100%;
    border-radius: 4px;
}

.inline-cta-box {
    background: var(--light-bg);
    padding: 1.8rem;
    border-radius: 6px;
    margin: 2.5rem 0;
    border-left: 4px solid var(--accent-color);
}

.inline-cta-box p {
    margin: 0;
    font-size: 1.1rem;
}

.problem-list,
.numbered-list {
    margin: 1.5rem 0 2rem 2rem;
}

.problem-list li,
.numbered-list li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.benefit-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
}

.benefit-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.benefit-card h3 {
    margin: 0 0 1rem 0;
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.benefit-card p {
    margin: 0;
    font-size: 1.05rem;
}

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

.product-card-editorial {
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
}

.product-card-editorial img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.product-info h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.product-info p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #555;
}

.text-cta {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.text-cta:hover {
    color: #d35400;
}

.pricing-section {
    background: var(--light-bg);
    padding: 5rem 2rem;
    margin: 4rem 0;
}

.pricing-intro {
    max-width: 720px;
    margin: 0 auto 3rem;
    text-align: center;
}

.pricing-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.pricing-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-top: -1rem;
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.features-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.features-list li:before {
    content: "✓ ";
    color: var(--success-color);
    font-weight: 700;
    margin-right: 0.5rem;
}

.btn-select,
.btn-select-large {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
}

.btn-select:hover,
.btn-select-large:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.btn-select-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-select-large.featured {
    background: var(--accent-color);
}

.btn-select-large.featured:hover {
    background: #d35400;
}

.form-section {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--secondary-color);
}

.form-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2.5rem;
}

.order-form {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 10px;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 95, 141, 0.1);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-weight: 400;
    cursor: pointer;
}

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

.btn-submit {
    width: 100%;
    background: var(--accent-color);
    color: #fff;
    border: none;
    padding: 1.2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.trust-elements {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
}

.trust-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.trust-item p {
    font-size: 1.05rem;
    margin: 0;
}

.urgency-box {
    background: #fff3cd;
    border-left: 4px solid #f0ad4e;
    padding: 2rem;
    border-radius: 6px;
    margin: 3rem 0;
}

.urgency-box h3 {
    margin: 0 0 1rem 0;
    color: #856404;
    font-size: 1.5rem;
}

.urgency-box p {
    margin-bottom: 1.5rem;
    color: #856404;
}

.btn-primary-large {
    background: var(--accent-color);
    color: #fff;
    padding: 1.2rem 2.5rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;
}

.btn-primary-large:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.faq-item p {
    font-size: 1.05rem;
    margin: 0;
}

.final-cta-section {
    max-width: 720px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.btn-final-cta {
    background: var(--accent-color);
    color: #fff;
    padding: 1.3rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

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

.main-footer {
    background: var(--secondary-color);
    color: #fff;
    padding: 3rem 2rem 1.5rem;
}

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

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

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

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

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

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

.footer-column ul li a {
    color: #ccc;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: #fff;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #ccc;
}

.page-header {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.cta-section-simple {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
    background: var(--light-bg);
    border-radius: 10px;
}

.cta-section-simple h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.cta-section-simple p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.products-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.product-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: flex-start;
}

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

.product-image-large {
    flex: 1;
}

.product-image-large img {
    width: 100%;
    border-radius: 10px;
}

.product-detail-info {
    flex: 1;
}

.product-detail-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.badge-product {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.features-detailed {
    list-style: none;
    margin: 1rem 0 2rem;
}

.features-detailed li {
    padding: 0.7rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
}

.features-detailed li:before {
    content: "✓ ";
    color: var(--success-color);
    font-weight: 700;
    margin-right: 0.7rem;
}

.comparison-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: var(--light-bg);
}

.comparison-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table thead {
    background: var(--primary-color);
    color: #fff;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table tbody tr:hover {
    background: #f9f9f9;
}

.comparison-table .featured-row {
    background: #fff9e6;
    font-weight: 600;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

.contact-details-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.contact-details-text h3 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--secondary-color);
}

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

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

.faq-contact p {
    font-size: 1.05rem;
    margin: 0;
}

.contact-cta-box {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    text-align: center;
}

.contact-cta-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.thanks-page {
    min-height: 60vh;
}

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

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

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

.thanks-lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #666;
}

.thanks-box {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 10px;
    margin: 2.5rem 0;
    text-align: left;
}

.thanks-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

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

.next-steps li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.selected-service-info {
    background: #e8f5e9;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--success-color);
}

.thanks-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.thanks-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.thanks-info p {
    font-size: 1.05rem;
    margin: 0;
}

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

.social-share {
    margin-top: 3rem;
}

.social-share p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #666;
}

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

.share-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    font-size: 0.95rem;
}

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

.legal-page .legal-content {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem;
    color: var(--secondary-color);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--secondary-color);
}

.legal-content p {
    margin-bottom: 1.3rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content ul li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    font-style: italic;
    color: #666;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: #fff;
}

.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(--secondary-color);
}

.savings-highlight {
    background: #e8f5e9;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--success-color);
}

.savings-highlight p {
    margin: 0;
    font-size: 1.15rem;
    color: #2e7d32;
}

.featured-product {
    background: #fff9e6;
    padding: 3rem;
    border-radius: 10px;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem 2rem;
        display: none;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

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

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

    .subtitle {
        font-size: 1.1rem;
    }

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

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

    .pricing-card.featured {
        transform: scale(1);
    }

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

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

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .btn-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

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

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