/* ============================================================
   Round 10 - Deep SEO & Modern UI/UX Components
   ศูนย์รับแปลเอกสาร.com
   ============================================================ */

/* === CSS Custom Properties (Updated) === */
:root {
    --r10-primary: #f97316;
    --r10-primary-hover: #ea580c;
    --r10-primary-dark: #c2410c;
    --r10-primary-light: #ffedd5;
    --r10-accent: #10b981;
    --r10-accent-hover: #059669;
    --r10-accent-light: #d1fae5;
    --r10-secondary: #1f1c1c;
    --r10-text: #1f2937;
    --r10-text-light: #6b7280;
    --r10-text-muted: #9ca3af;
    --r10-bg: #ffffff;
    --r10-bg-alt: #f8fafc;
    --r10-bg-card: #ffffff;
    --r10-border: #e5e7eb;
    --r10-border-light: #f3f4f6;
    --r10-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --r10-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --r10-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --r10-shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --r10-radius-sm: 6px;
    --r10-radius-md: 10px;
    --r10-radius-lg: 16px;
    --r10-radius-xl: 24px;
    --r10-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Legacy pages with a left sidebar need new enhancement sections in the article column. */
.legacy-sidebar-content > .legacy-enhancement-column {
    box-sizing: border-box;
    width: 78.21%;
    margin-left: 20.83%;
    clear: none;
}

.legacy-enhancement-column > .why-choose-us:first-child {
    margin-top: 40px;
}

/* === Why Choose Us Section === */
.why-choose-us {
    margin: 40px 0;
    padding: 35px;
    background: linear-gradient(135deg, var(--r10-bg-alt) 0%, #eef2ff 100%);
    border-radius: var(--r10-radius-lg);
    border: 1px solid var(--r10-border);
}

.why-choose-us h2 {
    color: var(--r10-text);
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 30px 0;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.why-choose-us h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--r10-primary), var(--r10-accent));
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--r10-bg-card);
    border-radius: var(--r10-radius-md);
    box-shadow: var(--r10-shadow-md);
    transition: var(--r10-transition);
    border: 1px solid var(--r10-border-light);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--r10-shadow-xl);
    border-color: var(--r10-primary-light);
}

.benefit-item i {
    font-size: 40px;
    color: var(--r10-primary);
    margin-bottom: 15px;
    display: block;
}

.benefit-item h3 {
    color: var(--r10-text);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

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

/* === Process Flow Section === */
.process-flow {
    margin: 40px 0;
    padding: 35px;
    background: var(--r10-bg);
    border-radius: var(--r10-radius-lg);
    border: 1px solid var(--r10-border);
}

.process-flow h2 {
    color: var(--r10-text);
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 30px 0;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.process-flow h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--r10-primary), var(--r10-accent));
    border-radius: 2px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 25px 20px;
    background: var(--r10-bg-alt);
    border-radius: var(--r10-radius-md);
    position: relative;
    border: 1px solid var(--r10-border-light);
}

.process-step:hover {
    background: var(--r10-bg-card);
    box-shadow: var(--r10-shadow-md);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--r10-primary), var(--r10-primary-hover));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 15px;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
}

.process-step h3 {
    color: var(--r10-text);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.process-step p {
    color: var(--r10-text-light);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* === Testimonials Section === */
.testimonials-section {
    margin: 40px 0;
    padding: 35px;
    background: linear-gradient(135deg, #f0fdf4 0%, var(--r10-bg-alt) 100%);
    border-radius: var(--r10-radius-lg);
    border: 1px solid var(--r10-border);
}

.testimonials-section h2 {
    color: var(--r10-text);
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 30px 0;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.testimonials-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--r10-accent), var(--r10-primary));
    border-radius: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: var(--r10-bg-card);
    padding: 25px;
    border-radius: var(--r10-radius-md);
    box-shadow: var(--r10-shadow-md);
    border: 1px solid var(--r10-border-light);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 60px;
    color: var(--r10-primary-light);
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    color: var(--r10-text);
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    padding-top: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--r10-text);
    font-size: 14px;
    font-weight: 600;
}

.testimonial-author span {
    color: var(--r10-text-light);
    font-size: 13px;
}

/* === CTA Section === */
.cta-section {
    margin: 40px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--r10-primary) 0%, var(--r10-primary-dark) 100%);
    padding: 40px;
    border-radius: var(--r10-radius-lg);
    text-align: center;
    box-shadow: var(--r10-shadow-xl);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-box h2 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 15px 0;
    position: relative;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    margin: 0 0 25px 0;
    position: relative;
}

.cta-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--r10-transition);
}

.cta-button.primary {
    background: white;
    color: var(--r10-primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: var(--r10-primary);
}

/* === Related Articles Section === */
.related-articles {
    margin: 40px 0;
    padding: 35px;
    background: var(--r10-bg);
    border-radius: var(--r10-radius-lg);
    border: 1px solid var(--r10-border);
}

.related-articles h2 {
    color: var(--r10-text);
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 25px 0;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.related-articles h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--r10-primary), var(--r10-accent));
    border-radius: 2px;
}

.article-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.article-card {
    display: block;
    padding: 20px;
    background: var(--r10-bg-alt);
    border-radius: var(--r10-radius-md);
    text-decoration: none;
    border: 1px solid var(--r10-border-light);
    transition: var(--r10-transition);
}

.article-card:hover {
    background: var(--r10-bg-card);
    box-shadow: var(--r10-shadow-md);
    border-color: var(--r10-primary-light);
    transform: translateY(-3px);
}

.article-card h3 {
    color: var(--r10-primary);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.article-card p {
    color: var(--r10-text-light);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* === Hero Section (Landing Pages) === */
.hero-section {
    background: linear-gradient(135deg, var(--r10-primary) 0%, var(--r10-primary-dark) 100%);
    padding: 60px 40px;
    border-radius: var(--r10-radius-lg);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    background-size: 200px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    color: white;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.hero-content p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin: 0 0 30px 0;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta .cta-button {
    padding: 16px 32px;
    font-size: 18px;
}

/* === Service Card Grid === */
.service-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.service-card {
    background: var(--r10-bg-card);
    border-radius: var(--r10-radius-md);
    box-shadow: var(--r10-shadow-md);
    overflow: hidden;
    transition: var(--r10-transition);
    border: 1px solid var(--r10-border-light);
}

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

.service-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-card-content {
    padding: 25px;
}

.service-card-content h3 {
    color: var(--r10-text);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.service-card-content p {
    color: var(--r10-text-light);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--r10-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: var(--r10-transition);
}

.service-card-link:hover {
    color: var(--r10-primary-hover);
    gap: 12px;
}

/* === Price Table === */
.price-table {
    margin: 40px 0;
    overflow: hidden;
    border-radius: var(--r10-radius-md);
    box-shadow: var(--r10-shadow-md);
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--r10-bg-card);
}

.price-table th {
    background: linear-gradient(135deg, var(--r10-primary) 0%, var(--r10-primary-hover) 100%);
    color: white;
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.price-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--r10-border-light);
    font-size: 14px;
    color: var(--r10-text);
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table tr:hover td {
    background: var(--r10-bg-alt);
}

.price-table .price {
    color: var(--r10-accent);
    font-weight: 700;
    font-size: 16px;
}

/* === Stats Section === */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
    margin: 40px 0;
    padding: 40px;
    background: linear-gradient(135deg, var(--r10-primary) 0%, var(--r10-primary-dark) 100%);
    border-radius: var(--r10-radius-lg);
}

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

.stat-number {
    color: white;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 500;
}

/* === Document Types List === */
.document-types {
    margin: 30px 0;
}

.document-types h3 {
    color: var(--r10-text);
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.document-types ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.document-types li {
    padding: 12px 16px;
    background: var(--r10-bg-alt);
    border-radius: var(--r10-radius-sm);
    border-left: 3px solid var(--r10-primary);
    font-size: 14px;
    color: var(--r10-text);
    transition: var(--r10-transition);
}

.document-types li:hover {
    background: var(--r10-primary-light);
    border-left-color: var(--r10-accent);
}

/* === FAQ Section Enhanced === */
.faq-enhanced {
    margin: 40px 0;
    padding: 35px;
    background: var(--r10-bg);
    border-radius: var(--r10-radius-lg);
    border: 1px solid var(--r10-border);
}

.faq-enhanced h2 {
    color: var(--r10-text);
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 25px 0;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.faq-enhanced h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--r10-primary), var(--r10-accent));
    border-radius: 2px;
}

.faq-enhanced details {
    margin-bottom: 12px;
    border: 1px solid var(--r10-border-light);
    border-radius: var(--r10-radius-sm);
    overflow: hidden;
}

.faq-enhanced summary {
    padding: 16px 20px;
    background: var(--r10-bg-alt);
    cursor: pointer;
    font-weight: 600;
    color: var(--r10-text);
    font-size: 15px;
    transition: var(--r10-transition);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-enhanced summary::after {
    content: '+';
    font-size: 20px;
    color: var(--r10-primary);
    transition: var(--r10-transition);
}

.faq-enhanced details[open] summary::after {
    content: '-';
}

.faq-enhanced summary:hover {
    background: var(--r10-primary-light);
}

.faq-enhanced details p {
    padding: 16px 20px;
    margin: 0;
    color: var(--r10-text-light);
    font-size: 14px;
    line-height: 1.7;
}

/* === Mobile Responsive === */
@media (max-width: 768px) {
    .legacy-sidebar-content > .legacy-enhancement-column {
        width: auto;
        margin-left: 0;
        clear: both;
    }

    .why-choose-us,
    .process-flow,
    .testimonials-section,
    .related-articles,
    .faq-enhanced {
        padding: 25px 20px;
        margin: 30px 0;
    }

    .why-choose-us h2,
    .process-flow h2,
    .testimonials-section h2,
    .related-articles h2,
    .faq-enhanced h2 {
        font-size: 22px;
    }

    .benefits-grid,
    .process-steps,
    .testimonials-grid,
    .article-cards,
    .service-card-grid {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .cta-box h2 {
        font-size: 22px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .stats-section {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 32px;
    }

    .price-table th,
    .price-table td {
        padding: 12px 15px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .benefit-item,
    .process-step,
    .testimonial-card {
        padding: 20px 15px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-cta .cta-button {
        padding: 14px 24px;
        font-size: 16px;
    }
}

/* === Modern UI/UX 2026 Enhancements === */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--r10-primary-light);
    color: var(--r10-primary-dark);
}

/* Focus Styles for Accessibility */
*:focus-visible {
    outline: 2px solid var(--r10-primary);
    outline-offset: 2px;
}

/* Smooth Transitions for All Interactive Elements */
a, button, input, select, textarea {
    transition: var(--r10-transition);
}

/* Modern Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--r10-bg-alt);
}

::-webkit-scrollbar-thumb {
    background: var(--r10-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--r10-primary-hover);
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-slide-in-left {
    animation: slideInLeft 0.6s ease-out forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.6s ease-out forwards;
}

/* Hover Effects */
.benefit-item,
.process-step,
.testimonial-card,
.article-card,
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.benefit-item:hover,
.process-step:hover,
.testimonial-card:hover,
.article-card:hover,
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--r10-shadow-xl);
}

/* Button Hover Effects */
.cta-button {
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--r10-primary), var(--r10-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass Morphism Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Modern Card Design */
.modern-card {
    background: var(--r10-bg-card);
    border-radius: var(--r10-radius-lg);
    box-shadow: var(--r10-shadow-md);
    overflow: hidden;
    transition: var(--r10-transition);
}

.modern-card:hover {
    box-shadow: var(--r10-shadow-xl);
    transform: translateY(-5px);
}

/* Gradient Backgrounds */
.gradient-primary {
    background: linear-gradient(135deg, var(--r10-primary) 0%, var(--r10-primary-dark) 100%);
}

.gradient-accent {
    background: linear-gradient(135deg, var(--r10-accent) 0%, var(--r10-accent-hover) 100%);
}

.gradient-mixed {
    background: linear-gradient(135deg, var(--r10-primary) 0%, var(--r10-accent) 100%);
}

/* Shadow Utilities */
.shadow-sm { box-shadow: var(--r10-shadow-sm); }
.shadow-md { box-shadow: var(--r10-shadow-md); }
.shadow-lg { box-shadow: var(--r10-shadow-lg); }
.shadow-xl { box-shadow: var(--r10-shadow-xl); }

/* Border Radius Utilities */
.rounded-sm { border-radius: var(--r10-radius-sm); }
.rounded-md { border-radius: var(--r10-radius-md); }
.rounded-lg { border-radius: var(--r10-radius-lg); }
.rounded-xl { border-radius: var(--r10-radius-xl); }
.rounded-full { border-radius: 9999px; }

/* Text Utilities */
.text-primary { color: var(--r10-primary); }
.text-accent { color: var(--r10-accent); }
.text-muted { color: var(--r10-text-muted); }
.text-center { text-align: center; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

/* Spacing Utilities */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* Print Styles */
@media print {
    .why-choose-us,
    .process-flow,
    .testimonials-section,
    .cta-section,
    .related-articles {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    .cta-button {
        border: 1px solid #000;
        color: #000;
        background: #fff;
    }
}
