/* ===== RESET & BASE STYLES ===== */
:root {
    --primary-blue: #0b3c5d;
    --secondary-blue: #1e88e5;
    --accent-orange: #ff9800;
    --accent-gold: #ffca28;
    --dark-bg: #06263d;
    --light-bg: #f6f8fb;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e1e5eb;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-light {
    background: var(--white);
}

.section-dark {
    background: linear-gradient(135deg, var(--dark-bg), var(--primary-blue));
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: inherit;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-orange);
}

.section-subtitle {
    font-size: 1.1rem;
    color: inherit;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== HEADER STYLES ===== */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.9rem;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contact span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.header-social a {
    color: var(--white);
    margin-left: 15px;
    transition: color 0.3s;
}

.header-social a:hover {
    color: var(--accent-gold);
}

.main-nav {
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.nav-brand .logo {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.nav-brand img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.brand-text h1 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin: 0;
    font-weight: 700;
}

.brand-text p {
    font-size: 0.85rem;
    color: var(--secondary-blue);
    margin: 0;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    gap: 5px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-link:hover,
.nav-link.active {
    background: var(--light-bg);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-nav {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
    color: var(--text-dark);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #0b3c5d 0%, #1e88e5 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #ff9800, #ffca28);
    color: #333;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
    background: linear-gradient(135deg, #ff8f00, #ffb300);
}

.btn-outline {
    background: transparent;
    border-color: white;
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffca28;
    margin-bottom: 5px;
    display: block;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-image {
    flex: 1;
    max-width: 500px;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* ===== CARDS GRID ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 1px solid var(--border-color);
    text-align: center;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-blue), #42a5f5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--white);
}

.card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== PROCESS FLOW ===== */
.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
}

.process-step {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    width: 180px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.process-step:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff9800, #ffca28);
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 15px;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 2rem;
    color: #ffca28;
    margin-bottom: 15px;
    height: 60px;
}

.process-step h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.process-step p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
}

.process-arrow {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 80px 0;
    background: var(--white);
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.features-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-orange);
}

.features-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== 4 COLUMN FEATURE CARDS ===== */
.features-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-card-4 {
    background: var(--white);
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card-4:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary-blue);
}

.feature-icon-4 {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-blue), #42a5f5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
}

.feature-card-4 h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
}

.feature-card-4 p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== RESPONSIVE ADJUSTMENTS FOR 4 COLUMNS ===== */
@media (max-width: 1200px) {
    .features-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .feature-card-4 {
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    .features-grid-4 {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .feature-card-4 {
        padding: 25px;
    }
    
    .features-header h2 {
        font-size: 2rem;
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #0b3c5d, #1e88e5);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-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 1000 100" preserveAspectRatio="none"><path d="M0,100 L250,50 L500,100 L750,50 L1000,100 L1000,0 L0,0 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
    opacity: 0.1;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.5;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff9800, #ffca28);
    color: #333;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
    margin-bottom: 30px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 152, 0, 0.6);
    background: linear-gradient(135deg, #ff8f00, #ffb300);
}

.btn-cta i {
    font-size: 1.4rem;
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-top: 20px;
    flex-wrap: wrap;
}

.cta-note-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-note-separator {
    color: rgba(255, 255, 255, 0.5);
}

.cta-note i {
    color: #ffca28;
    font-size: 1rem;
}

/* ===== PROFESSIONAL FOOTER STYLES ===== */
.main-footer {
    background: linear-gradient(135deg, #0b3c5d, #06263d);
    color: #fff;
    padding: 60px 0 30px;
    border-top: 4px solid #ff9800;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Footer Logo Section */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    padding: 8px;
    border: 2px solid #1e88e5;
}

.logo-text h3 {
    font-size: 1.5rem;
    color: #fff;
    margin: 0 0 5px 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.tagline {
    color: #1e88e5;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

.company-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-icon:hover {
    background: #1e88e5;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
}

.social-icon:first-child:hover {
    background: #1877f2; /* Facebook blue */
}

/* Footer Headings */
.footer-heading {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 12px;
    position: relative;
    letter-spacing: 0.5px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ff9800;
    border-radius: 2px;
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 3px 0;
    position: relative;
}

.footer-menu a:hover {
    color: #ffca28;
    transform: translateX(5px);
}

.footer-menu a::before {
    content: '›';
    margin-right: 8px;
    color: #ff9800;
    font-weight: bold;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    color: #ff9800;
    font-size: 1.1rem;
    margin-top: 3px;
    width: 20px;
    text-align: center;
}

.contact-detail {
    flex: 1;
}

.contact-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-detail a,
.contact-detail p {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

.contact-detail a:hover {
    color: #ffca28;
    text-decoration: underline;
}

/* Legal Links */
.legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.legal-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.legal-links li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.legal-links a:hover {
    color: #ffca28;
    padding-left: 5px;
}

.legal-links a::before {
    content: '•';
    color: #ff9800;
    margin-right: 10px;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 30px;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.copyright p {
    margin: 0;
}

.disclaimer {
    color: #ffca28;
    font-size: 0.85rem;
    max-width: 600px;
    margin: 0 auto;
}

.disclaimer p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.disclaimer i {
    font-size: 1rem;
}

/* ===== LEGAL PAGES STYLES ===== */
.legal-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e9ecef;
}

.legal-header h1 {
    color: #0b3c5d;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-subtitle {
    color: #666;
    font-size: 1rem;
    font-style: italic;
}

.legal-content {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.legal-section-item {
    margin-bottom: 30px;
}

.legal-section-item h2 {
    color: #0b3c5d;
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.legal-section-item p {
    color: #444;
    line-height: 1.6;
    font-size: 1rem;
}

.legal-contact {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.legal-contact h3 {
    color: #0b3c5d;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

/* ===== RESPONSIVE DESIGN ===== */

/* RESPONSIVE FOR CTA */
@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .btn-cta {
        padding: 16px 35px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
    
    .cta-note {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-note-separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .btn-cta {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

/* RESPONSIVE FOR FOOTER */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
    
    .footer-top {
        padding-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .main-footer {
        padding: 50px 0 25px;
    }
    
    .footer-heading {
        margin-bottom: 20px;
    }
    
    .footer-logo {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
    
    .company-desc {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .contact-detail {
        text-align: center;
    }
    
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .legal-links li {
        border: none;
        padding: 0;
    }
    
    .legal-links a {
        padding: 8px 15px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 4px;
    }
    
    .legal-links a::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        gap: 35px;
    }
    
    .footer-heading {
        text-align: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-menu {
        text-align: center;
    }
    
    .footer-menu a:hover {
        transform: none;
    }
    
    .legal-links {
        gap: 10px;
    }
    
    .legal-links a {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .footer-bottom-content {
        gap: 10px;
    }
    
    .copyright, .disclaimer {
        font-size: 0.85rem;
    }
}

/* GENERAL RESPONSIVE */
@media (max-width: 1100px) {
    .nav-menu {
        gap: 0;
    }
    
    .nav-link {
        padding: 10px 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 900px) {
    .header-top .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .header-contact span {
        margin: 0 10px;
    }
    
    .nav-container {
        flex-wrap: wrap;
    }
    
    .nav-menu {
        order: 3;
        width: 100%;
        margin-top: 20px;
        justify-content: space-between;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-section .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 80%;
    }
    
    .process-flow {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .process-step {
        width: 100%;
        max-width: 300px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    /* Responsive for legal pages */
    .legal-section {
        padding: 60px 0;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 30px 20px;
    }
    
    .legal-section-item h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}
/* Student Welcome in Header */
.student-welcome {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

.student-welcome span {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Responsive adjustments for student welcome */
@media (max-width: 900px) {
    .student-welcome {
        order: 4;
        width: 100%;
        justify-content: center;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid var(--border-color);
    }
}

