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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

/* Header & Navigation */
.header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
}

.logo h2 {
    color: #1a5490;
    font-size: 20px;
    font-weight: 700;
}

.header-contact {
    color: #666;
    font-size: 14px;
}

.header-contact span:last-child {
    font-weight: 500;
}

.main-nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    padding: 15px 0;
    flex-wrap: wrap;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    border: none;
    background: none;
    cursor: pointer;
    padding: 5px 0;
}

.nav-link:hover {
    color: #1a5490;
}

.cta-btn {
    background-color: #d9534f !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 4px;
    font-weight: 600;
}

.cta-btn:hover {
    background-color: #c9302c !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    top: 100%;
    left: 0;
    min-width: 220px;
    z-index: 1001;
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: #333;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: #1a5490;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu a,
.mobile-menu button {
    padding: 12px;
    font-size: 16px;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    color: #333;
}

.mobile-menu a:hover,
.mobile-menu button:hover {
    color: #1a5490;
}

.mobile-dropdown-menu {
    background-color: #f9f9f9;
    border-left: 3px solid #1a5490;
    padding-left: 15px;
}

.mobile-dropdown-menu a {
    padding: 10px 12px;
    font-size: 14px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a5490 0%, #2a7cc7 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: underline;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.hero-section h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.95;
}

/* Stats Bar */
.stats-bar {
    background-color: #f8f9fa;
    padding: 40px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stats-bar .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat {
    padding: 20px 0;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Services Grid */
.services-grid {
    padding: 80px 0;
}

.services-grid h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a5490;
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a5490;
    padding: 20px 20px 10px;
}

.service-card p {
    font-size: 14px;
    color: #666;
    padding: 0 20px 20px;
    line-height: 1.6;
}

/* Split Content Section */
.split-content {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.split-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 20px;
    line-height: 1.3;
}

.split-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.benefit-list {
    list-style: none;
    margin-top: 25px;
}

.benefit-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #555;
    font-size: 15px;
}

.benefit-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: #1a5490;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    font-weight: bold;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
}

.comparison-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a5490;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
}

.comparison-table thead {
    background-color: #1a5490;
    color: white;
}

.comparison-table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.comparison-table td {
    padding: 16px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

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

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

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.faq-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a5490;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    overflow: hidden;
}

.faq-toggle {
    width: 100%;
    padding: 18px;
    background-color: white;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #1a5490;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-toggle:hover {
    background-color: #f5f5f5;
}

.toggle-icon {
    font-size: 20px;
    font-weight: bold;
}

.faq-content {
    padding: 20px 18px;
    border-top: 1px solid #eee;
    background-color: #fafafa;
}

.faq-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.faq-content p:last-child {
    margin-bottom: 0;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #d9534f 0%, #c9302c 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.cta-btn-large {
    display: inline-block;
    background-color: white;
    color: #d9534f;
    padding: 14px 40px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-btn-large:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a5490;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a5490;
    box-shadow: 0 0 0 3px rgba(26, 84, 144, 0.1);
}

.contact-form button {
    width: 100%;
    margin-top: 10px;
}

/* Footer */
.footer {
    background-color: #1a3a52;
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.footer-section a:hover {
    color: white;
}

.footer-section p {
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
}

/* ================================================
   Extended Styles — Homepage & Cross-Page Compat
   ================================================ */

/* Header variants used by different pages */
.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
}

.sticky-header { position: sticky; top: 0; z-index: 1000; }
.logo { color: #1a5490; font-weight: 700; }
.logo h1 { font-size: 20px; color: #1a5490; }

/* Nav variants */
.nav-desktop,
.nav,
.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-desktop a,
.nav a,
.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.nav-desktop a:hover,
.nav a:hover,
.nav-menu a:hover { color: #1a5490; }

.nav-dropdown { position: relative; }
.nav-dropdown .dropdown-menu { top: 100%; }

.dropdown-btn,
.dropdown-toggle {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px 0;
}

.dropdown-btn:hover,
.dropdown-toggle:hover { color: #1a5490; }

.dropdown-arrow { font-size: 10px; margin-left: 4px; }

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu,
.nav-dropdown:hover .dropdown-menu { display: block; }

/* Mobile nav variants */
.mobile-menu-toggle,
.mobile-menu-btn,
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.nav-mobile,
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    z-index: 999;
    overflow-y: auto;
}

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

.mobile-nav-link,
.mobile-dropdown-btn {
    padding: 12px;
    font-size: 16px;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    color: #333;
    display: block;
}

.mobile-dropdown-menu.active { display: block; }
.mobile-dropdown-toggle {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    color: #333;
}

/* Hero — Homepage full variant */
.hero {
    background: linear-gradient(135deg, #1a5490 0%, #2a7cc7 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,84,144,0.92) 0%, rgba(42,124,199,0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero .container { position: relative; z-index: 2; }

.hero-badge {
    display: inline-block;
    background: #e67e22;
    color: white;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.hero p,
.hero-text {
    font-size: 17px;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    max-width: 650px;
    margin-bottom: 30px;
}

.hero-ctas {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-trust-items {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
}

.trust-item .check {
    color: #e67e22;
    font-weight: 800;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #d9534f;
    color: white;
}

.btn-primary:hover {
    background-color: #c9302c;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.6);
}

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

.btn-white {
    background: white;
    color: #d9534f;
}

.btn-white:hover {
    background: #f0f0f0;
}

.btn-block {
    width: 100%;
    display: block;
    text-align: center;
    padding: 14px;
    font-size: 16px;
}

/* Grid variants */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Service card extras */
.service-icon {
    font-size: 36px;
    padding: 20px 20px 0;
}

.service-link {
    display: block;
    padding: 0 20px 20px;
    color: #1a5490;
    font-weight: 600;
    font-size: 14px;
}

.service-link:hover { color: #d9534f; }

/* Split content — grid variant from index */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Feature list (alias for benefit-list) */
.feature-list {
    list-style: none;
    margin-top: 25px;
}

.feature-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.feature-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 20px;
    height: 20px;
    background-color: #1a5490;
    border-radius: 50%;
}

/* Process Steps */
.process-steps {
    padding: 80px 0;
}

.process-steps h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a5490;
}

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

.step {
    text-align: center;
    padding: 30px 20px;
}

.step .step-number {
    width: 60px;
    height: 60px;
    background: #1a5490;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a5490;
    margin-bottom: 12px;
}

.step p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* Contact section — grid layout variant */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-info { padding-top: 10px; }
.contact-info h2 {
    font-size: 28px;
    color: #1a5490;
    margin-bottom: 15px;
    text-align: left;
}

.contact-info p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-details { margin-top: 20px; }
.contact-item { margin-bottom: 15px; font-size: 15px; }
.contact-item strong { color: #333; display: block; margin-bottom: 4px; }
.contact-item a { color: #1a5490; }
.contact-item a:hover { color: #d9534f; }
.contact-item p { margin: 0; font-size: 14px; color: #666; }

.contact-form-wrapper form {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.form-note {
    font-size: 13px;
    color: #888;
    text-align: center;
    margin-top: 12px;
}

/* Footer — grid variant */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* Generic footer (thank-you/404 pages) */
footer {
    background-color: #1a3a52;
    color: white;
    padding: 50px 0 30px;
}

footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

footer .footer-content p {
    font-size: 14px;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.7);
}

footer .footer-content a {
    color: rgba(255,255,255,0.9);
}

/* Thank-You Page */
.thankyou-section {
    padding: 100px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thankyou-content { max-width: 600px; margin: 0 auto; }

.thankyou-icon {
    width: 80px;
    height: 80px;
    background: #5cb85c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 25px;
}

.thankyou-content h2 {
    font-size: 36px;
    color: #1a5490;
    margin-bottom: 15px;
}

.thankyou-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.thankyou-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.thankyou-links .btn-secondary {
    color: #1a5490;
    border-color: #1a5490;
}

.thankyou-links .btn-secondary:hover {
    background: #1a5490;
    color: white;
}

/* 404 Page */
.error-section {
    padding: 100px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-content { max-width: 600px; margin: 0 auto; }

.error-code {
    font-size: 120px;
    font-weight: 900;
    color: #1a5490;
    line-height: 1;
    margin-bottom: 15px;
}

.error-content h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.error-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.error-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-links .btn-secondary {
    color: #1a5490;
    border-color: #1a5490;
}

.error-links .btn-secondary:hover {
    background: #1a5490;
    color: white;
}

/* Stats — alternate class name */
.stats {
    background-color: #f8f9fa;
    padding: 40px 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Calculator */
.calculator-section {
    padding: 60px 0;
}

.calculator-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.calc-group { margin-bottom: 20px; }
.calc-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.calc-group select,
.calc-group input[type="range"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.range-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.range-value {
    font-weight: 700;
    font-size: 16px;
    color: #1a5490;
    min-width: 100px;
    text-align: right;
}

.calc-results {
    background: #1a5490;
    border-radius: 8px;
    padding: 30px;
    margin-top: 25px;
    text-align: center;
    color: white;
}

.calc-results h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 20px;
}

.calc-result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.result-value {
    font-size: 28px;
    font-weight: 900;
    color: #e67e22;
}

.result-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 5px;
}

/* Service area grid */
.service-area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

/* Article content */
.article-content,
.content-section {
    padding: 60px 0;
}

.article-content h2,
.content-section h2 {
    font-size: 28px;
    color: #1a5490;
    margin-bottom: 20px;
}

.article-content p,
.content-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Cost table */
.cost-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cost-table th,
.cost-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.cost-table thead {
    background: #1a5490;
    color: white;
}

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

/* Hidden utility */
.hidden { display: none !important; }

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle,
    .mobile-menu-toggle,
    .mobile-menu-btn,
    .mobile-nav-toggle {
        display: block;
    }

    .main-nav,
    .nav-desktop,
    .nav,
    .nav-menu {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .hero { padding: 50px 0; }
    .hero h1 { font-size: 28px; }
    .hero-text, .hero p { font-size: 15px; }
    .hero-ctas { flex-direction: column; }
    .hero-trust-items { flex-direction: column; gap: 10px; }

    .split-grid { grid-template-columns: 1fr; gap: 30px; }
    .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    .contact-info h2 { text-align: center; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .grid-3 { grid-template-columns: 1fr; }

    .thankyou-links,
    .error-links { flex-direction: column; align-items: center; }
    .error-code { font-size: 80px; }

    .process-steps h2 { font-size: 28px; }

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

    .hero-subtitle {
        font-size: 14px;
    }

    .split-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-bar .container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

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

    .grid-6 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-grid h2 {
        font-size: 28px;
    }

    .contact-form {
        padding: 30px;
    }

    .cta-banner h2 {
        font-size: 24px;
    }

    .cta-banner p {
        font-size: 14px;
    }

    .comparison-table {
        font-size: 12px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px;
    }

    .split-text h2 {
        font-size: 24px;
    }

    .faq-toggle {
        padding: 14px;
        font-size: 15px;
    }

    .faq-content {
        padding: 15px 14px;
    }

    .benefit-list li {
        padding: 8px 0 8px 28px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .header-top {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 22px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .stats-bar .container {
        grid-template-columns: 1fr;
    }

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

    .stat-label {
        font-size: 12px;
    }

    .services-grid h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .comparison-section h2 {
        font-size: 22px;
    }

    .faq-section h2 {
        font-size: 22px;
    }

    .contact-section h2 {
        font-size: 22px;
    }

    .cta-banner h2 {
        font-size: 20px;
    }

    .contact-form {
        padding: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 16px;
    }
}

@media print {
    .header,
    .footer,
    .cta-banner,
    .contact-section,
    .menu-toggle {
        display: none;
    }

    body {
        font-size: 12px;
        line-height: 1.5;
    }

    .hero-section {
        background: none;
        color: black;
        padding: 20px 0;
    }

    .hero-section h1 {
        font-size: 24px;
        color: black;
    }
}
