/* Global Styles */
:root {
    --primary-color: #21335b;
    /* Deep Blue from logo */
    --secondary-color: #d12323;
    /* Bright Red from logo */
    --accent-color: #737373;
    /* Medium Gray from logo */
    --gradient-main: linear-gradient(135deg, #21335b 0%, #d12323 100%);
    --text-color: #222;
    --light-gray: #f8f9fa;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.98);
}

.logo {
    height: 120px;
    width: auto;
    transition: all 0.3s ease;
}

.header.scrolled .logo {
    height: 80px;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand img {
    max-height: 50px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    padding: 0.5rem 1rem !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: none;
    z-index: 1;
}

/* Hero Quote Form */
.hero-quote-form .form-control,
.hero-quote-form .form-select {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
}

.hero-quote-form label {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.hero-bg-carousel {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.hero-section .carousel-inner,
.hero-section .carousel-item,
.hero-section .carousel-item img {
    height: 100vh;
    min-height: 500px;
    width: 100vw;
    object-fit: cover;
}

.hero-overlay {
    background: rgba(33, 51, 91, 0.45);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.text-shadow {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.15);
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-section .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Hero Carousel Controls */
.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    width: 5%;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
    opacity: 1;
}

.hero-section .carousel-control-prev-icon,
.hero-section .carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    padding: 0.5rem;
}

.hero-section .carousel-indicators {
    bottom: 20px;
    margin-bottom: 0;
}

.hero-section .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 4px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.hero-section .carousel-indicators .active {
    background-color: var(--secondary-color);
    border-color: white;
    transform: scale(1.2);
}

/* Quote Section */
.quote-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.quote-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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23dee2e6" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.quote-section .container {
    position: relative;
    z-index: 1;
}

.quote-form-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.quote-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.quote-form-card .form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.quote-form-card .form-control,
.quote-form-card .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.quote-form-card .form-control:focus,
.quote-form-card .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(33, 51, 91, 0.1);
    background: white;
    transform: translateY(-1px);
}

.quote-form-card .btn-primary {
    background: var(--gradient-main);
    border: none;
    border-radius: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(33, 51, 91, 0.3);
}

.quote-form-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(33, 51, 91, 0.4);
}

.quote-form-card .btn-primary:active {
    transform: translateY(0);
}

.quote-form-card .btn-primary:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Form Validation Styles */
.quote-form-card .form-control.is-invalid,
.quote-form-card .form-select.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.1);
    background-color: #fff5f5;
}

.quote-form-card .invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    font-weight: 500;
}

.quote-form-card .form-control.is-invalid:focus,
.quote-form-card .form-select.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Success state for forms */
.quote-form-card .form-control.is-valid,
.quote-form-card .form-select.is-valid {
    border-color: #198754;
    background-color: #f8fff9;
}

/* Enhanced alert styling */
.alert {
    border: none;
    border-radius: 15px;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.3s ease-out;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f1aeb5 100%);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive Styles for Quote Section */
@media (max-width: 768px) {
    .quote-form-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
        border-radius: 15px;
    }

    .quote-section h2 {
        font-size: 2rem;
    }

    .quote-section .lead {
        font-size: 1.1rem;
    }

    .quote-form-card .btn-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Quote Form Section (legacy styles - keeping for compatibility) */

.card {
    border: none;
    border-radius: 10px;
}

.form-label {
    font-weight: 500;
    color: var(--text-color);
}

.form-control,
.form-select {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
}

/* Services Section */
.services-section {
    background-color: white;
}

.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-body {
    padding: 2rem;
}

/* Footer */
.footer {
    background-color: #1a2b3c;
    color: #fff;
    padding: 60px 0 30px;
    margin-top: 80px;
    width: 100%;
}

.footer h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--secondary-color) !important;
}

/* Footer Logo */
.footer-logo {
    height: 150px;
    width: auto;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #0f1a24;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section .lead {
        font-size: 1.2rem;
    }
    
    /* Show a smaller version of the hero form on mobile */
    .hero-section .d-none.d-lg-block {
        display: block !important;
        margin-top: 2rem;
    }
    
    .hero-section .card {
        background-color: rgba(255, 255, 255, 0.9) !important;
    }

    .navbar-brand img {
        max-height: 40px;
    }

    .logo {
        height: 100px;
    }

    .header.scrolled .logo {
        height: 70px;
    }

    .footer-logo {
        height: 120px;
    }
}

@media (max-width: 991px) {

    .hero-section .carousel-inner,
    .hero-section .carousel-item,
    .hero-section .carousel-item img {
        height: 60vh;
        min-height: 320px;
    }
}

/* Animations */
.btn {
    transition: all 0.3s ease;
}

.card {
    transition: all 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Unique Section Styles */
.who-we-are-section {
    background: #fff;
    padding: 80px 0 40px 0;
    position: relative;
}

.who-we-are-bar {
    width: 6px;
    height: 100px;
    background: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 40px;
    border-radius: 3px;
}

.who-we-are-content {
    margin-left: 30px;
}

.who-we-are-title {
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 2.2rem;
}

.who-we-are-subtitle {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.who-we-are-img {
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(33, 51, 91, 0.08);
    overflow: hidden;
    max-width: 100%;
}

.how-we-work-section {
    background: var(--gradient-main);
    color: #fff;
    padding: 80px 0 40px 0;
    position: relative;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
}

.how-we-work-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.how-we-work-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.how-we-work-item {
    background: rgba(255, 255, 255, 0.08);
    border-left: 6px solid var(--secondary-color);
    padding: 18px 24px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    box-shadow: 0 2px 8px rgba(33, 51, 91, 0.05);
}

/* Moving Process Section */
.moving-process-section {
    background: #f4f7fb;
    padding: 80px 0 40px 0;
}

.moving-process-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.moving-step {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(33, 51, 91, 0.07);
    padding: 32px 24px;
    text-align: center;
    margin-bottom: 24px;
    position: relative;
}

.moving-step-number {
    background: var(--secondary-color);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 8px rgba(33, 51, 91, 0.12);
}

/* Responsive Tweaks */
@media (max-width: 991px) {

    .who-we-are-section,
    .how-we-work-section,
    .moving-process-section {
        padding: 40px 0 20px 0;
    }

    .who-we-are-bar {
        height: 60px;
        top: 20px;
    }
}

.quote-form-float {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 32px rgba(33, 51, 91, 0.18);
    border-radius: 18px;
    padding: 32px 28px 24px 28px;
    max-width: 400px;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
    z-index: 2;
    position: relative;
}

/* Service Card Icons */
.service-card .service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    background: rgba(33, 51, 91, 0.08);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    box-shadow: 0 2px 8px rgba(33, 51, 91, 0.07);
}

@media (max-width: 991px) {
    .quote-form-float {
        margin-top: 24px;
        margin-bottom: 24px;
        padding: 24px 10px 18px 10px;
    }
}

.service-card {
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(33, 51, 91, 0.07);
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
    background: #fff;
}

.service-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 8px 32px rgba(33, 51, 91, 0.13);
}

.service-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}

.service-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 12px;
    text-align: center;
    letter-spacing: 1px;
}

.service-btn {
    display: block;
    margin: 18px auto 0 auto;
    border-radius: 24px;
    font-weight: 600;
    padding: 8px 24px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: #fff;
    transition: background 0.2s, color 0.2s;
}

.service-btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* Testimonials */
.testimonials-section {
    background: #f8f9fa;
}

.testimonial-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(33, 51, 91, 0.07);
    text-align: center;
    position: relative;
}

.testimonial-quote {
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-weight: bold;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

/* FAQ Accordion */
.faq-section .accordion-button {
    font-weight: 600;
    color: var(--primary-color);
    background: #f4f7fb;
    border: none;
    border-radius: 12px 12px 0 0;
    box-shadow: none;
    margin-bottom: 0;
}

.faq-section .accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: #fff;
}

.faq-section .accordion-item {
    border: none;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(33, 51, 91, 0.07);
}

.faq-section .accordion-body {
    background: #fff;
    color: var(--text-color);
    border-radius: 0 0 12px 12px;
}

.cta-banner-section {
    background: var(--gradient-main);
    color: #fff;
    border-radius: 0;
}

.cta-banner-section .btn {
    border-radius: 24px;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 12px 36px;
    box-shadow: 0 2px 8px rgba(33, 51, 91, 0.10);
    transition: background 0.2s, color 0.2s;
}

.cta-banner-section .btn:hover {
    background: var(--secondary-color);
    color: #fff;
}

/* Blog Highlights */
.blog-highlights-section {
    background: #f8f9fa;
}

.blog-card {
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(33, 51, 91, 0.07);
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
    background: #fff;
}

.blog-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 8px 32px rgba(33, 51, 91, 0.13);
}

.blog-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}

.blog-btn {
    border-radius: 24px;
    font-weight: 600;
    padding: 8px 24px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: #fff;
    transition: background 0.2s, color 0.2s;
}

.blog-btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* Contact Form */
.contact-form {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(33, 51, 91, 0.13);
}

.contact-form .form-label {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-form .btn {
    border-radius: 24px;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 12px 36px;
}

.navbar .btn-danger {
    border-radius: 24px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 2px 8px rgba(209, 35, 35, 0.10);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    letter-spacing: 1px;
}

.navbar .btn-danger:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 16px rgba(33, 51, 91, 0.13);
}

/* Animate.css overrides for section fade/slide */
.animate__fadeInUp {
    --animate-duration: 1.2s;
}

.animate__fadeIn {
    --animate-duration: 1.2s;
}

.animate__slideInUp {
    --animate-duration: 1.2s;
}

/* Section Animations */
.hero-section,
.who-we-are-section,
.how-we-work-section,
.moving-process-section,
.services-section,
.testimonials-section,
.faq-section,
.cta-banner-section,
.blog-highlights-section,
.contact-section {
    opacity: 0;
    animation: fadeInUpSection 1.2s forwards;
    animation-delay: 0.2s;
}

@keyframes fadeInUpSection {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* Footer Modernization */
.footer {
    background: var(--primary-color);
    color: #fff;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    box-shadow: 0 -2px 16px rgba(33, 51, 91, 0.10);
}

.footer a {
    color: #fff;
    opacity: 0.85;
    transition: opacity 0.2s, color 0.2s;
}

.footer a:hover {
    color: var(--secondary-color) !important;
    opacity: 1;
}

.footer h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.footer .fab {
    font-size: 1.3rem;
}

.footer small {
    color: #eee;
    opacity: 0.7;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.service-card h3,
.process-step h3,
.blog-card h3,
.cta-content h2,
.footer h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.8rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 2.2rem;
}

h4 {
    font-size: 1.8rem;
}

h5 {
    font-size: 1.5rem;
}

h6 {
    font-size: 1.2rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Update specific section headings */
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-color);
}

/* Update service card titles */
.service-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* Update testimonial text */
.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Update form labels */
.form-group label {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Update button text */
.btn {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Update footer text */
.footer h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer p,
.footer a {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Update navigation */
.nav-link {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Update hero section */
.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Update process section */
.process-step h3 {
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.process-step p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Update blog section */
.blog-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.blog-card p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Update CTA section */
.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Responsive typography */
@media (max-width: 768px) {
    .moving-process-title {
        font-size: 3rem;
    }

    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    h3 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .moving-process-title {
        font-size: 2.5rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}