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

:root {
    --primary-color: #2c5f3f;
    --secondary-color: #7d9f88;
    --accent-color: #c9a961;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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(--white);
}

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

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

ul {
    list-style: none;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 18px 0;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 32px;
}

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

.nav-menu a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: var(--bg-light);
}

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

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: var(--text-light);
}

.btn-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #234a32;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.intro-split {
    display: flex;
    min-height: 500px;
}

.intro-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

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

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

.intro-left h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.intro-left p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-light);
}

.problem-section {
    padding: 100px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.problem-section h2 {
    font-size: 40px;
    margin-bottom: 28px;
}

.problem-section p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.services-preview {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.services-header p {
    font-size: 18px;
    color: var(--text-light);
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 300px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.service-card.featured {
    border: 3px solid var(--accent-color);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
}

.service-image {
    height: 220px;
    overflow: hidden;
}

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

.service-details {
    padding: 28px;
}

.service-details h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-details p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-light);
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 14px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: var(--primary-color);
}

.benefits-split {
    display: flex;
    min-height: 600px;
}

.benefits-left {
    flex: 1;
    padding: 80px 60px;
    background-color: var(--white);
}

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

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

.benefits-left h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.benefit-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.benefit-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.testimonials-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

.testimonial-block {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 32px;
    box-shadow: var(--shadow);
}

.testimonial-block p {
    font-size: 18px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.testimonial-author {
    display: block;
    font-size: 16px;
    color: var(--text-light);
    font-style: normal;
}

.cta-split-section {
    padding: 120px 20px;
    background-color: var(--secondary-color);
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 36px;
}

.btn-cta-large {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 18px 48px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.form-section {
    padding: 100px 20px;
    background-color: var(--white);
}

.form-split {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.form-left p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.form-right {
    flex: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    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);
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px 36px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #234a32;
}

.trust-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.trust-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

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

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.trust-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.footer {
    background-color: #1a1a1a;
    color: var(--white);
    padding: 60px 20px 20px;
}

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

.footer-column {
    flex: 1 1 250px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    color: #cccccc;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333333;
}

.footer-bottom p {
    font-size: 14px;
    color: #999999;
}

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

.sticky-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-hover);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #b59850;
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: var(--white);
    padding: 24px 20px;
    z-index: 9999;
    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: 24px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #234a32;
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    padding: 12px 28px;
    border: 2px solid var(--white);
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.page-hero {
    padding: 100px 20px 80px;
    background-color: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 18px;
    color: var(--text-light);
}

.about-split {
    display: flex;
    min-height: 500px;
}

.about-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.about-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.about-left p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-light);
}

.values-section {
    padding: 100px 20px;
    background-color: var(--white);
}

.values-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 250px;
    text-align: center;
    padding: 32px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.mission-split {
    display: flex;
    min-height: 500px;
}

.mission-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.mission-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.mission-left p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-light);
}

.team-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.team-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 24px;
}

.team-section p {
    text-align: center;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.cta-section {
    padding: 100px 20px;
    background-color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.services-detail-split {
    display: flex;
    min-height: 500px;
    margin-bottom: 60px;
}

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

.service-detail-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    position: relative;
}

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

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

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.service-detail-left h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.service-detail-left p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--text-light);
}

.service-features {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 32px;
}

.service-features li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 8px;
}

.badge-popular {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.comparison-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.comparison-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-row {
    display: flex;
}

.comparison-row.header {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 700;
}

.comparison-row:not(.header):nth-child(even) {
    background-color: var(--bg-light);
}

.comparison-cell {
    flex: 1;
    padding: 20px;
    text-align: center;
    border-right: 1px solid var(--border-color);
    font-size: 15px;
}

.comparison-cell:last-child {
    border-right: none;
}

.comparison-cell:first-child {
    text-align: left;
    flex: 1.5;
}

.contact-split {
    display: flex;
    min-height: 500px;
}

.contact-left {
    flex: 1;
    padding: 80px 60px;
    background-color: var(--bg-light);
}

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

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

.contact-left h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: underline;
}

.map-section {
    padding: 100px 20px;
    background-color: var(--white);
}

.map-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.map-section p {
    text-align: center;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 40px;
}

.map-placeholder {
    background-color: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 100px 40px;
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
}

.faq-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background-color: var(--white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.thanks-hero {
    padding: 120px 20px;
    background-color: var(--bg-light);
}

.thanks-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 48px;
    margin-bottom: 32px;
}

.thanks-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
}

.thanks-hero p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
}

.selected-service-info {
    margin-top: 32px;
}

.selected-service {
    display: inline-block;
    background-color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 17px;
    box-shadow: var(--shadow);
}

.next-steps-section {
    padding: 100px 20px;
    background-color: var(--white);
}

.next-steps-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

.steps-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

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

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.thanks-cta-section {
    padding: 80px 20px;
    background-color: var(--accent-color);
    text-align: center;
}

.thanks-cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.thanks-cta-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 36px;
}

.policy-content {
    padding: 80px 20px;
}

.policy-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.policy-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.policy-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--text-light);
}

.policy-content ul {
    list-style: disc;
    padding-left: 32px;
    margin-bottom: 20px;
}

.policy-content ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: var(--text-light);
}

.policy-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        padding: 20px;
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
        gap: 16px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-split,
    .intro-split,
    .benefits-split,
    .about-split,
    .mission-split,
    .services-detail-split,
    .contact-split,
    .form-split {
        flex-direction: column;
    }

    .services-detail-split.reverse {
        flex-direction: column;
    }

    .hero-left,
    .intro-left,
    .benefits-left,
    .about-left,
    .mission-left,
    .service-detail-left,
    .contact-left,
    .form-left {
        padding: 40px 20px;
    }

    .hero-right,
    .intro-right,
    .benefits-right,
    .about-right,
    .mission-right,
    .service-detail-right,
    .contact-right {
        min-height: 300px;
    }

    .hero-content h1,
    .page-hero h1,
    .thanks-hero h1 {
        font-size: 32px;
    }

    .intro-left h2,
    .benefits-left h2,
    .about-left h2,
    .mission-left h2,
    .service-detail-left h2 {
        font-size: 28px;
    }

    .services-header h2,
    .testimonials-section h2,
    .trust-section h2,
    .values-section h2,
    .team-section h2,
    .comparison-section h2,
    .faq-section h2,
    .next-steps-section h2 {
        font-size: 32px;
    }

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

    .trust-grid,
    .values-grid,
    .steps-grid {
        gap: 24px;
    }

    .trust-item,
    .value-card,
    .step-item {
        flex: 1 1 100%;
    }

    .footer-content {
        gap: 32px;
    }

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

    .sticky-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .comparison-row {
        flex-direction: column;
    }

    .comparison-cell {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        text-align: left;
    }

    .comparison-cell:last-child {
        border-bottom: none;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta-buttons .btn-cta,
    .cta-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
}
