:root {
    /* Royal Blue Professional Theme */
    --primary: #1e3a8a;           /* Royal blue */
    --secondary: #0a2540;         /* Deep navy blue */
    --accent: #3b82f6;            /* Bright blue */
    --accent-light: #60a5fa;      /* Lighter blue */
    --background: #ffffff;        /* White background */
    --card-bg: #ffffff;           /* White card background */
    --text-dark: #0f172a;         /* Dark text */
    --text-light: #ffffff;        /* White text */
    --text-muted: #64748b;        /* Muted text */
    
    /* Border and Shadow */
    --border-radius: 8px;          /* Standard border radius */
    --border-radius-lg: 12px;      /* Large border radius */
    --border-radius-xl: 16px;      /* Extra-large border radius */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);   /* Small shadow */
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);      /* Regular shadow */
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);  /* Medium shadow */
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.1);  /* Large shadow */
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.1);  /* Extra-large shadow */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--background);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.2rem;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-right: 0.8rem;
    border-radius: 50%;
    background-color: white;
    padding: 2px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-list li {
    font-weight: 500;
    position: relative;
}

.nav-list li a {
    color: var(--primary);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-list li a:hover {
    color: var(--accent);
}

.nav-list li a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
    left: 0;
    bottom: 0;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.nav-list li a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.mobile-menu {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    background: transparent;
    border: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    position: relative;
    z-index: 1001;
}

.mobile-menu .bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

.mobile-menu.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile nav styles */
@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 1rem;
        transition: all 0.5s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-list.active {
        left: 0;
    }

    .nav-list li {
        width: 100%;
        text-align: center;
    }

    .nav-list li a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        width: 100%;
    }

    .mobile-menu {
        display: flex;
    }

    body.nav-open {
        overflow: hidden;
    }
}

/* Existing styles kept */

.mobile-menu {
    display: none; /* Hidden by default (desktop) */
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    font-size: 2rem;
    align-items: center;
    justify-content: center;
}

.mobile-menu .icon {
    display: none;
    color: var(--primary);
    font-size: 2rem;
    line-height: 1;
}

.mobile-menu .toggle-open {
    display: inline-block;
}

.mobile-menu.active .toggle-open {
    display: none;
}

.mobile-menu.active .toggle-close {
    display: inline-block;
}

/* Show only on mobile */
@media (max-width: 768px) {
    .mobile-menu {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 1rem;
        transition: all 0.5s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-list.active {
        left: 0;
    }

    .nav-list li {
        width: 100%;
        text-align: center;
    }

    .nav-list li a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        width: 100%;
    }
}


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem 2rem 2rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-light);
}

.hero-content {
    z-index: 2;
    max-width: 600px;
    text-align: center;
    animation: fadeIn 1s ease-out forwards;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-btn {
    background: var(--accent);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.cta-btn:hover {
    background-color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

#chartdiv {
    width: 70%;
    height: 70%;
    position: absolute;
    top: 15%;
    left: 15%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stat-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--accent);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background-color: var(--accent);
    color: var(--text-light);
}

.stat-card h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.stat-card p {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 1rem;
}

/* Services Section */
.services {
    background-color: var(--background);
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    color: var(--primary);
}

.section-title span {
    color: var(--accent);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-content {
    display: flex;
    align-items: center;
    padding: 0;
}

.reverse {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1;
    padding: 3rem;
}

.service-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    position: relative;
}

.service-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

.service-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

.image-content {
    flex: 1;
}

.image-content img {
    width: 100%;
    height: 92%;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--accent-light);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* About Section */
.about {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 5rem 0;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-content {
    flex: 1 1 500px;
    max-width: 600px;
    color: var(--text-light);
}

.about-content .section-title {
    color: var(--text-light);
    text-align: left;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.about-features {
    margin: 2rem 0;
    padding-left: 0;
    list-style: none;
}

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.about-features li:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.about-features i {
    width: 40px;
    height: 40px;
    background-color: var(--accent);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.about-features span {
    flex: 1;
}

.about-image {
    flex: 1 1 400px;
    max-width: 500px;
}

.image-slider {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    position: relative;
}

.image-3d img {
    width: 100%;
    height: auto;
    display: block;
}

.floating-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--accent);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--text-light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: var(--accent);
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}




  




/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--text-light);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--text-light);
    color: var(--accent);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--text-light);
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Money Transfer Tips Section */
.transfer-tips-section {
    background-color: var(--background);
    padding: 5rem 0;
}

.transfer-tips-section .container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.transfer-tips {
    flex: 1;
    min-width: 300px;
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.transfer-tips h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.transfer-tips h2 span {
    color: var(--accent);
}

.tips-list {
    list-style: none;
    margin-bottom: 2rem;
}

.tips-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: rgba(59, 130, 246, 0.05);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.tips-list li:hover {
    background-color: rgba(59, 130, 246, 0.1);
    transform: translateX(5px);
}

.tips-list i {
    color: var(--accent);
    margin-right: 1rem;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.working-hours-box {
    display: flex;
    align-items: flex-start;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    color: var(--text-light);
    flex-wrap: wrap;
}

.working-hours-box .icon {
    background-color: var(--text-light);
    color: var(--accent);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.working-hours h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    width: 100%;
}

.hours-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
    width: 100%;
    align-items: center;
}

.hours-row:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
    text-align: left;
    padding-right: 1rem;
}

.time {
    font-weight: 600;
    text-align: left;
}

/* Contact Info Section */
.contact-info {
    flex: 1;
    min-width: 300px;
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent);
    color: var(--primary);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-item i {
    color: var(--accent);
    margin-right: 1rem;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.info-item p {
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--accent);
    color: var(--text-light);
    transform: translateY(-3px);
}

.map-container {
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.footer {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 5rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    color: var(--text-light);
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--text-light);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--text-light);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.dual-spinner {
    position: relative;
    width: 100px;
    height: 100px;
}

.ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 6px solid transparent;
    border-top: 6px solid var(--accent);
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.4);
}

.ring1 {
    animation-duration: 1.2s;
    border-top-color: rgba(255, 255, 255, 0.7);
}

.ring2 {
    top: 10px;
    left: 10px;
    width: 80px;
    height: 80px;
    animation: spinReverse 1.5s linear infinite;
    border-top-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinReverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    .hero {
        padding: 7rem 1rem 3rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .service-content {
        flex-direction: column;
    }
    
    .reverse {
        flex-direction: column;
    }
    
    .text-content, .image-content {
        padding: 2rem;
    }
    
    .steps-container {
        padding: 0 1rem;
    }
    
    .step-card {
        flex-direction: column;
        align-items: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .step-connector {
        left: 50%;
        top: 50px;
        bottom: -1rem;
        height: auto;
    }
    
    .transfer-tips-section .container {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
}