/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #004c99;
    text-decoration: underline;
}

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

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1.2rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Navigation */
.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px 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-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.logo:hover {
    text-decoration: none;
    color: #0066cc;
}

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

.nav-links li {
    margin: 0;
}

.nav-links a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #0066cc;
    text-decoration: none;
}

/* Editorial Container - Main Archetype */
.editorial-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Article Hero */
.article-hero {
    margin-bottom: 3rem;
}

.hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

.hero-image {
    width: 100%;
    border-radius: 4px;
    margin-top: 2rem;
}

/* Page Header */
.page-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.page-header .lead {
    font-size: 1.2rem;
    color: #666;
}

/* Article Content */
.article-content {
    margin-top: 2rem;
}

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

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #333;
}

.content-image {
    width: 100%;
    margin: 2.5rem 0;
    border-radius: 4px;
}

/* Inline CTA */
.inline-cta {
    margin: 2.5rem 0;
    text-align: center;
}

.cta-link {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0066cc;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border: 2px solid #0066cc;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-link:hover {
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
}

.inline-cta.highlighted {
    background-color: #fff3e0;
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
}

/* Highlight Box */
.highlight-box {
    background-color: #f5f5f5;
    padding: 2rem;
    border-left: 4px solid #0066cc;
    margin: 2.5rem 0;
}

.highlight-box h3 {
    margin-top: 0;
    color: #0066cc;
}

/* Comparison Block */
.comparison-block {
    display: flex;
    gap: 2rem;
    margin: 2.5rem 0;
}

.comparison-item {
    flex: 1;
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 4px;
}

.comparison-item h4 {
    margin-top: 0;
    color: #1a1a1a;
}

.comparison-item ul {
    margin-left: 1.2rem;
    margin-bottom: 0;
}

/* Numbered List */
.numbered-list {
    margin: 2.5rem 0;
}

.list-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.number {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066cc;
    line-height: 1;
    flex-shrink: 0;
}

.item-content h4 {
    margin-top: 0;
}

/* Testimonials */
.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f9f9f9;
    border-left: 4px solid #4CAF50;
    border-radius: 4px;
}

.testimonial-inline blockquote {
    margin: 0;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    color: #666;
}

/* Services Pricing */
.services-pricing {
    margin: 3rem 0;
}

.services-pricing h3 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2rem;
}

.service-card {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: #0066cc;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
}

.service-card.featured {
    border-color: #0066cc;
    background-color: #f0f7ff;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #0066cc;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card h4 {
    margin-top: 0;
    font-size: 1.5rem;
}

.service-card p {
    color: #555;
}

.price {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
    margin: 1.5rem 0;
}

.select-service {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #004c99;
}

/* Form Section */
.form-section {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.form-section h3 {
    margin-top: 0;
}

.contact-form {
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.btn-submit {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #4CAF50;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #45a049;
}

/* Trust Section */
.trust-section {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-number {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Process List */
.process-list {
    margin: 2rem 0;
    padding-left: 2rem;
}

.process-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Final CTA */
.final-cta {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
    color: #ffffff;
    border-radius: 8px;
    text-align: center;
}

.final-cta h3 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 1rem;
}

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

.btn-large {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    display: inline-block;
    background-color: #ffffff;
    color: #0066cc;
    padding: 1.2rem 3rem;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-large:hover {
    background-color: #f0f0f0;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.sticky-btn {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    display: block;
    background-color: #4CAF50;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #45a049;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    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 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #4CAF50;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #45a049;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

/* Footer */
.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
    margin-top: 5rem;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    color: #ccc;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    color: #ccc;
    text-decoration: none;
}

.footer-section ul a:hover {
    color: #ffffff;
    text-decoration: underline;
}

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

.footer-bottom p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.85rem;
    color: #999;
    margin: 0;
}

/* Services Page */
.services-list {
    margin: 2rem 0;
}

.service-detail-card {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.service-detail-card.featured-card {
    border-color: #0066cc;
    background-color: #f0f7ff;
}

.service-detail-card.premium-card {
    border-color: #9C27B0;
    background-color: #f3e5f5;
}

.badge-popular,
.badge-premium {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
}

.badge-popular {
    background-color: #0066cc;
}

.badge-premium {
    background-color: #9C27B0;
}

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

.service-header h2 {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.price-large {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066cc;
    flex-shrink: 0;
}

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

.service-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-body h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

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

.trust-section-page {
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
}

/* About Page */
.team-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
}

.team-member {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 4px;
    border-left: 4px solid #0066cc;
}

.team-member h3 {
    margin-top: 0;
    color: #0066cc;
}

.comparison-table {
    margin: 2.5rem 0;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.comparison-row {
    display: flex;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.comparison-row.highlight-row {
    background-color: #f0f7ff;
    font-weight: 600;
}

.comparison-label {
    flex: 0 0 200px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
}

.comparison-value {
    flex: 1;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.comparison-value.negative {
    color: #d32f2f;
}

.comparison-value.positive {
    color: #4CAF50;
}

.styled-list {
    margin: 2rem 0;
    padding-left: 0;
    list-style: none;
    counter-reset: styled-counter;
}

.styled-list li {
    counter-increment: styled-counter;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
}

.styled-list li::before {
    content: counter(styled-counter);
    position: absolute;
    left: 0;
    top: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
}

.stats-section {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

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

.stat-number {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

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

.testimonial-card {
    background-color: #f9f9f9;
    padding: 2rem;
    border-left: 4px solid #4CAF50;
    border-radius: 4px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card cite {
    font-style: normal;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    color: #666;
}

/* Contact Page */
.contact-grid {
    display: flex;
    gap: 3rem;
    margin: 2.5rem 0;
}

.contact-info-section,
.contact-info-additional {
    flex: 1;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin-bottom: 0.3rem;
}

.small-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    color: #666;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.faq-item h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #0066cc;
}

.cta-section {
    background-color: #f5f5f5;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}

.cta-section h3 {
    margin-top: 0;
}

/* Thanks Page */
.thanks-content {
    text-align: center;
    padding: 3rem 0;
}

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

.thanks-message {
    margin: 2rem 0;
}

.service-confirmation {
    background-color: #f0f7ff;
    padding: 1rem;
    border-radius: 4px;
    margin: 1.5rem 0;
    font-weight: 600;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #0066cc;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.step-content p {
    margin: 0;
}

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

.btn-primary,
.btn-secondary {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #0066cc;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #004c99;
    text-decoration: none;
}

.btn-secondary {
    background-color: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.btn-secondary:hover {
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
}

/* Legal Pages */
.legal-page .content-block {
    margin-bottom: 2rem;
}

.legal-page ol {
    margin-left: 2rem;
}

.legal-page ol li {
    margin-bottom: 0.8rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .editorial-container {
        padding: 2rem 1.5rem;
    }

    .comparison-block {
        flex-direction: column;
        gap: 1rem;
    }

    .trust-section,
    .stats-section {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .contact-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .service-header {
        flex-direction: column;
    }

    .price-large {
        font-size: 2rem;
    }

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

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

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

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

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

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

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

    .comparison-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .comparison-label {
        flex: none;
    }
}