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

:root {
    --primary-orange: #FF8C00;
    --dark-orange: #E67E00;
    --light-orange: #FFB84D;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --border-color: #E0E0E0;
    
    /* Fluid font sizes - scale with viewport */
    --fs-h1: clamp(1.75rem, 4vw + 1rem, 3.5rem);
    --fs-h2: clamp(1.5rem, 3vw + 1rem, 3rem);
    --fs-h3: clamp(1.25rem, 2vw + 0.75rem, 1.8rem);
    --fs-h4: clamp(1.1rem, 1.5vw + 0.5rem, 1.3rem);
    --fs-body: clamp(0.9rem, 1vw + 0.5rem, 1.15rem);
    --fs-small: clamp(0.85rem, 0.8vw + 0.4rem, 1rem);
    
    /* Fluid spacing */
    --spacing-xs: clamp(0.5rem, 1vw, 0.75rem);
    --spacing-sm: clamp(0.75rem, 1.5vw, 1rem);
    --spacing-md: clamp(1rem, 2vw, 1.5rem);
    --spacing-lg: clamp(1.5rem, 3vw, 2.5rem);
    --spacing-xl: clamp(2rem, 4vw, 4rem);
    --spacing-xxl: clamp(3rem, 6vw, 6rem);
    
    /* Fluid container padding */
    --container-padding: clamp(15px, 3vw, 20px);
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

/* Smooth scrolling for mobile */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Better scrolling on iOS */
@supports (-webkit-overflow-scrolling: touch) {
    * {
        -webkit-overflow-scrolling: touch;
    }
}

/* Better touch targets for mobile */
a, button {
    -webkit-tap-highlight-color: rgba(255, 140, 0, 0.2);
    touch-action: manipulation;
}

/* Professional mobile optimizations */
@media (max-width: 480px) {
    /* Smooth transitions for all interactive elements */
    * {
        -webkit-tap-highlight-color: rgba(255, 140, 0, 0.15);
    }
    
    /* Better focus states for accessibility */
    a:focus-visible,
    button:focus-visible {
        outline: 2px solid var(--primary-orange);
        outline-offset: 2px;
        border-radius: 4px;
    }
    
    /* Improved section spacing */
    section {
        scroll-margin-top: 70px;
    }
    
    /* Better text rendering on mobile */
    p, span, li {
        -webkit-font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
    }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Ensure no horizontal scroll on mobile */
@media (max-width: 480px) {
    body {
        width: 100vw;
        max-width: 100vw;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }
    
    html {
        width: 100vw;
        max-width: 100vw;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }
    
    /* Ensure hero banner breaks out of any container */
    section.hero-banner {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        margin-right: calc(-50vw + 50%) !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* Prevent text size adjustment on iOS */
* {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

.container {
    max-width: min(1200px, 95vw);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

/* Better mobile container padding */
@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }
}

/* Navbar Styles */
.navbar {
    background: var(--white);
    padding: clamp(0.75rem, 1.5vw, 1rem) 0;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: clamp(0.4rem, 1vw, 0.5rem);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: bold;
    color: var(--primary-orange);
}

.logo-img {
    height: clamp(35px, 5vw, 50px);
    width: auto;
    object-fit: contain;
    max-width: 100%;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: clamp(1rem, 2.5vw, 2rem);
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    display: block;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.download-btn {
    background: var(--primary-orange);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    transition: background 0.3s ease, transform 0.3s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.download-btn:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .download-btn {
        width: calc(100% - 4rem);
        margin: 0 auto;
    }
}

/* Hero Banner Section */
.hero-banner {
    background-color: transparent;
    color: var(--white);
    padding: 0;
    display: block;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
    left: 0;
    right: 0;
    box-sizing: border-box;
}

/* Force full width on mobile */
@media (max-width: 768px) {
    .hero-banner {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        position: relative;
        left: 0 !important;
        right: 0 !important;
    }
}

/* Ensure banner container doesn't cause overflow */
@media (max-width: 480px) {
    .hero-banner {
        width: 100vw;
        max-width: 100vw;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }
}

/* Responsive banner container - ensure full width on all screens */
@media (max-width: 1024px) {
    .hero-banner {
        max-height: 60vh;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        max-height: 50vh;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        max-height: 40vh;
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        position: relative;
        left: 0;
        right: 0;
    }
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    margin: 0;
    padding: 0;
    min-height: clamp(200px, 35vh, 600px);
    max-height: clamp(300px, 70vh, 800px);
    max-width: 100%;
    aspect-ratio: 16/9;
    transition: all 0.3s ease;
    /* Better image quality */
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* Ensure full width on all screens */
    box-sizing: border-box;
    /* Prevent any spacing issues */
    vertical-align: middle;
}

/* Show desktop image by default, hide mobile */
.banner-mobile {
    display: none;
}

.banner-desktop {
    display: block;
}

/* Desktop and Tablet - show desktop image */
@media (min-width: 481px) {
    .banner-desktop {
        display: block !important;
    }
    
    .banner-mobile {
        display: none !important;
    }
    
    .banner-image {
        object-fit: cover;
        aspect-ratio: 16/9;
    }
}

/* Additional responsive adjustments for better width handling */
@media (max-width: 1024px) {
    .banner-image {
        width: 100%;
        min-height: clamp(180px, 30vh, 500px);
        max-height: clamp(250px, 60vh, 700px);
        object-fit: cover;
        object-position: center;
    }
}

@media (max-width: 768px) {
    .banner-image {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 280px;
        max-height: 500px;
        aspect-ratio: auto;
        object-fit: cover;
        object-position: center center;
        /* Ensure image fills width properly */
        display: block;
        margin: 0 !important;
        padding: 0 !important;
        left: 0 !important;
        right: 0 !important;
    }
    
    .hero-banner {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        left: 0 !important;
        right: 0 !important;
    }
}

@media (max-width: 480px) {
    /* Hide desktop image on mobile */
    .banner-desktop {
        display: none !important;
    }
    
    /* Show mobile image on mobile */
    .banner-mobile {
        display: block !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        /* Let mobile image display naturally */
        min-height: auto;
        max-height: none;
        aspect-ratio: auto;
        object-fit: cover;
        object-position: center center;
        /* Better display on small screens */
        margin: 0 !important;
        padding: 0 !important;
        /* Ensure image is visible and clear */
        image-rendering: auto;
        /* Position to show full image */
        position: relative;
        left: 0 !important;
        right: 0 !important;
        /* Force full width */
        box-sizing: border-box;
    }
    
    .banner-image {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }
    
    .hero-banner {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden;
        margin: 0 !important;
        padding: 0 !important;
        position: relative;
        left: 0 !important;
        right: 0 !important;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .banner-image {
        width: 100vw !important;
        min-width: 100vw !important;
        max-width: 100vw !important;
        min-height: clamp(180px, 32vh, 400px);
        max-height: clamp(220px, 50vh, 500px);
        aspect-ratio: unset;
        object-fit: contain;
        object-position: center top;
        margin: 0 !important;
        padding: 0 !important;
        position: relative;
        left: 0;
        right: 0;
    }
    
    .hero-banner {
        width: 100vw !important;
        max-width: 100vw !important;
        overflow: visible;
    }
}

.banner-overlay {
    display: none;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-banner .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
    padding: 0;
    max-width: 100%;
    width: 100%;
}

/* Remove container padding on mobile for full-width image */
@media (max-width: 768px) {
    .hero-banner .container {
        padding: 0;
        margin: 0;
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-banner .container {
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100vw !important;
        width: 100vw !important;
    }
}

.banner-content h1 {
    font-size: var(--fs-h1);
    margin-bottom: var(--spacing-md);
    font-weight: bold;
    line-height: 1.2;
}

.banner-content p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 2.5vw, 2rem);
    border-radius: clamp(25px, 3vw, 30px);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: clamp(0.4rem, 0.8vw, 0.5rem);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: var(--fs-body);
    min-height: 44px;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-orange);
}

.btn-primary:hover {
    background: var(--light-gray);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-orange);
    transform: translateY(-3px);
}

.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-screen {
    width: 280px;
    height: 550px;
    background: var(--white);
    border: 8px solid #333;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.app-preview {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--white);
    font-weight: bold;
}

/* About Section - Modern Design */
.about-section {
    padding: clamp(40px, 10vw, 120px) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-orange), var(--light-orange), var(--primary-orange));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.about-header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 4rem);
}

.about-section h2 {
    font-size: var(--fs-h2);
    color: var(--primary-orange);
    text-align: center;
    margin-bottom: var(--spacing-md);
    font-weight: 800;
    position: relative;
    display: inline-block;
    letter-spacing: -1px;
    line-height: 1.2;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-orange), var(--light-orange));
    border-radius: 3px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: clamp(0.95rem, 2vw, 1.3rem);
    margin-bottom: 0;
    margin-top: clamp(1rem, 3vw, 2.5rem);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.about-intro {
    margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.intro-content {
    max-width: min(900px, 90vw);
    margin: 0 auto;
    background: linear-gradient(135deg, var(--white) 0%, #fafafa 100%);
    padding: clamp(1.25rem, 4vw, 3rem) clamp(1.5rem, 5vw, 4rem);
    border-radius: clamp(15px, 2vw, 25px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 140, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.intro-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-orange), var(--light-orange));
}

.intro-text {
    color: var(--text-light);
    line-height: 1.8;
    font-size: var(--fs-body);
    margin: 0;
    text-align: center;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(1.25rem, 3vw, 2.5rem);
    margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.feature-card {
    background: var(--white);
    padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 2.5vw, 2rem);
    border-radius: clamp(15px, 2vw, 20px);
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--light-orange));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(255, 140, 0, 0.25);
    border-color: var(--primary-orange);
}

.feature-icon {
    width: clamp(55px, 8vw, 80px);
    height: clamp(55px, 8vw, 80px);
    margin: 0 auto clamp(1rem, 2vw, 1.5rem);
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    border-radius: clamp(15px, 2vw, 20px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.3);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 15px 35px rgba(255, 140, 0, 0.4);
}

.feature-icon i {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    color: var(--white);
}

.feature-card h3 {
    font-size: var(--fs-h4);
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: var(--fs-body);
    margin: 0;
}

/* About Bottom Cards */
.about-bottom {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(1.5rem, 3vw, 3rem);
}

.about-card {
    background: linear-gradient(135deg, var(--white) 0%, #fafafa 100%);
    padding: clamp(1.5rem, 3vw, 3rem);
    border-radius: clamp(15px, 2.5vw, 25px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-orange), var(--light-orange));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 140, 0, 0.2);
    border-color: var(--primary-orange);
}

.about-card-icon {
    width: clamp(55px, 7vw, 70px);
    height: clamp(55px, 7vw, 70px);
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    border-radius: clamp(12px, 1.8vw, 18px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
}

.about-card-icon i {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    color: var(--white);
}

.about-card h3 {
    font-size: var(--fs-h3);
    color: var(--text-dark);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    font-weight: 700;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: var(--fs-body);
    margin: 0;
}

.user-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.user-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.user-item:hover {
    background: #fff3e0;
    transform: translateX(5px);
}

.user-item i {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.user-item span {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
}

.security-card {
    background: linear-gradient(135deg, #fff3e0 0%, var(--white) 100%);
}

/* Download Section */
.download-section {
    padding: clamp(40px, 8vw, 80px) 0;
    background: var(--white);
}

.download-section h2 {
    font-size: var(--fs-h2);
    color: var(--primary-orange);
    text-align: center;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.download-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(1.25rem, 2.5vw, 2rem);
    margin-bottom: clamp(2rem, 4vw, 4rem);
}

.download-card {
    background: var(--light-gray);
    padding: clamp(1.75rem, 3vw, 2.5rem);
    border-radius: clamp(12px, 1.5vw, 15px);
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.download-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    border: 2px solid var(--primary-orange);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.2);
}

.store-icon {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary-orange);
    margin-bottom: var(--spacing-sm);
}

.download-card h3 {
    font-size: var(--fs-h4);
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.download-card p {
    color: var(--text-light);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    font-size: var(--fs-body);
}

.download-link {
    display: inline-block;
    color: var(--primary-orange);
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-orange);
    border-radius: 30px;
    transition: all 0.3s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.download-card:hover .download-link {
    background: var(--primary-orange);
    color: var(--white);
}

/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(120px, 100%), 1fr));
    gap: clamp(1rem, 2.5vw, 2rem);
    margin-top: clamp(1.5rem, 3vw, 3rem);
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    padding: clamp(1.75rem, 3vw, 3rem);
    border-radius: clamp(12px, 1.5vw, 15px);
    color: var(--white);
}

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

.stat-item h3 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: var(--spacing-xs);
    line-height: 1.2;
}

.stat-item p {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    padding: clamp(50px, 10vw, 100px) 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--light-orange));
}

.contact-header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 4rem);
}

.contact-header h2 {
    font-size: var(--fs-h2);
    color: var(--primary-orange);
    margin-bottom: var(--spacing-md);
    font-weight: bold;
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

.contact-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.contact-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
}

.contact-item a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.contact-form button {
    align-self: flex-start;
}

.footer-brand .footer-logo {
  margin-bottom: 1rem;
}

.footer-brand .footer-logo img {
  height: clamp(45px, 6vw, 60px);
  width: auto;
  object-fit: contain;
  max-width: 100%;
}

/* ===== Enhanced Contact Cards ===== */

.optimized-contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: min(1200px, 95vw);
  margin: 0 auto;
}

.contact-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: clamp(15px, 2vw, 20px);
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--light-orange));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 140, 0, 0.25);
  border-color: var(--primary-orange);
}

.contact-icon-wrapper {
    flex-shrink: 0;
    width: clamp(55px, 7vw, 70px);
    height: clamp(55px, 7vw, 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    border-radius: clamp(15px, 2vw, 20px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
    transition: all 0.4s ease;
}

.contact-card:hover .contact-icon-wrapper {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(255, 140, 0, 0.4);
}

.contact-icon-wrapper i {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--white);
    background: none;
    padding: 0;
    border-radius: 0;
}

.contact-card-content {
    flex: 1;
}

.contact-card-content h3 {
    margin: 0 0 clamp(0.75rem, 1.5vw, 12px);
    color: var(--text-dark);
    font-size: var(--fs-h4);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.contact-card-content p {
    margin: 0;
    color: var(--text-light);
    font-size: var(--fs-body);
    line-height: 1.8;
}

.contact-card-content p strong {
    color: var(--text-dark);
    font-weight: 600;
}

.contact-card-content a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: clamp(0.4rem, 0.8vw, 0.5rem);
    transition: all 0.3s ease;
    font-size: var(--fs-body);
}

.contact-card-content a i {
    font-size: 1rem;
    background: none;
    padding: 0;
    border-radius: 0;
    color: var(--primary-orange);
}

.contact-card-content a:hover {
    color: var(--dark-orange);
    transform: translateX(5px);
}

.contact-card-content a:hover i {
    transform: translateX(3px);
}

/* Mobile Contact Section */
@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }

    .contact-header {
        margin-bottom: 2.75rem;
    }

    .contact-header h2 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .contact-header .section-subtitle {
        margin-top: 0.75rem;
    }

    .optimized-contact {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .contact-card {
        padding: 2rem 1.75rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
        gap: 0;
    }

    .contact-icon-wrapper {
        width: 65px;
        height: 65px;
        margin: 0 auto 1.5rem auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-icon-wrapper i {
        font-size: 1.8rem;
    }

    .contact-card-content {
        text-align: center;
        width: 100%;
    }

    .contact-card-content h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
        margin-top: 0;
        text-align: center;
    }

    .contact-card-content p {
        font-size: 0.975rem;
        line-height: 1.7;
        text-align: center;
        margin: 0 auto;
    }

    .contact-card-content a {
        font-size: 1rem;
        padding: 0.5rem 0;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0.75rem auto 0 auto;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 2.5rem 0;
    }

    .contact-header {
        margin-bottom: 2.25rem;
    }

    .contact-header h2 {
        font-size: 1.65rem;
        line-height: 1.3;
    }
    
    .contact-header .section-subtitle {
        margin-top: 0.5rem;
    }

    .optimized-contact {
        gap: 1.5rem;
    }

    .contact-card {
        padding: 1.75rem 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0;
        align-items: center;
        justify-content: center;
        border-radius: 18px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .contact-icon-wrapper {
        margin: 0 auto 1.25rem auto;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
    }

    .contact-icon-wrapper i {
        font-size: 1.75rem;
    }

    .contact-card-content {
        text-align: center;
        width: 100%;
    }

    .contact-card-content h3 {
        font-size: 1.15rem;
        margin-bottom: 0.875rem;
        margin-top: 0;
        text-align: center;
    }

    .contact-card-content p {
        font-size: 0.9rem;
        line-height: 1.7;
        text-align: center;
        margin: 0 auto;
    }

    .contact-card-content a {
        justify-content: center;
        font-size: 0.95rem;
        margin: 0.5rem auto 0 auto;
        display: inline-flex;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--text-dark);
    padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1rem, 2vw, 1.5rem);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--light-orange), var(--primary-orange));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: contents;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-orange);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    font-weight: 700;
    font-size: var(--fs-h4);
}

.footer-section p {
    color: var(--text-light);
    font-size: var(--fs-small);
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--light-orange), var(--primary-orange));
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

.footer-bottom a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--dark-orange);
    text-decoration: underline;
}

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

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem 0;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links a {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        text-align: left;
    }

    .nav-links .download-btn {
        margin: 1rem 2rem;
        text-align: center;
        border-radius: 30px;
    }

    body.menu-open {
        overflow: hidden;
    }

    .hero-banner {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

    .banner-image {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        height: auto;
        min-height: clamp(180px, 30vh, 400px);
        max-height: 50vh;
        object-fit: cover;
        object-position: center;
        aspect-ratio: 16/9;
        display: block;
    }

    .hero-banner .container {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .banner-content h1 {
        font-size: 2.5rem;
    }

    .banner-content p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .about-section {
        padding: 3rem 0;
    }

    .about-section h2 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-top: 0.75rem;
        line-height: 1.5;
    }

    .about-header {
        margin-bottom: 2.75rem;
    }

    .intro-content {
        padding: 1.75rem 1.5rem;
        margin-bottom: 3.25rem;
        border-radius: 20px;
    }

    .intro-text {
        font-size: 0.975rem;
        line-height: 1.8;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        margin-bottom: 3.5rem;
    }

    .feature-card {
        padding: 2rem 1.75rem;
        border-radius: 20px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .feature-icon i {
        font-size: 2rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.875rem;
    }

    .feature-card p {
        font-size: 0.975rem;
        line-height: 1.7;
    }

    .about-bottom {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-card {
        padding: 2rem 1.75rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-card-icon {
        width: 65px;
        height: 65px;
        margin: 0 auto 1.5rem auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about-card-icon i {
        font-size: 1.9rem;
    }

    .about-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
        margin-top: 0;
        text-align: center;
        width: 100%;
    }

    .about-card p {
        font-size: 0.975rem;
        text-align: center;
        width: 100%;
        margin: 0 auto;
    }
    
    .user-list {
        width: 100%;
        margin-top: 0.5rem;
    }

    .user-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .user-item {
        padding: 0.875rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-section h2,
    .download-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }

    .download-section {
        padding: 50px 0;
    }

    .download-section h2 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .download-buttons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .download-card {
        padding: 2rem 1.5rem;
    }

    .store-icon {
        font-size: 3rem;
        margin-bottom: 0.75rem;
    }

    .download-card h3 {
        font-size: 1.3rem;
    }

    .download-card p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .stat-item p {
        font-size: 0.9rem;
    }

    .phone-mockup {
        display: none;
    }

    .footer {
        padding: 3rem 0 1rem;
    }

    .footer .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.85rem;
    }

    .footer-bottom p {
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.05rem;
        gap: 0.4rem;
    }

    .logo-img {
        height: 38px;
        width: auto;
    }

    .navbar {
        padding: 0.875rem 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .nav-links {
        top: 60px;
        padding: 1.5rem 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
    
    .nav-links a {
        padding: 1.125rem 1.5rem;
        font-size: 1.05rem;
        font-weight: 500;
    }
    
    .nav-links .download-btn {
        margin: 0.75rem 1.5rem;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .hero-banner {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

    .banner-image {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        height: auto;
        min-height: clamp(150px, 25vh, 300px);
        max-height: 40vh;
        object-fit: cover;
        object-position: center;
        aspect-ratio: 16/9;
        display: block;
        margin-left: 0;
        margin-right: 0;
    }

    .banner-content h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .banner-content p {
        font-size: 0.95rem;
    }

    .about-section {
        padding: 2.5rem 0;
    }

    .about-section h2 {
        font-size: 1.65rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-top: 0.5rem;
        line-height: 1.5;
    }

    .about-header {
        margin-bottom: 2.25rem;
        padding: 0 0.5rem;
    }

    .intro-content {
        padding: 1.5rem 1.25rem;
        margin-bottom: 2.75rem;
        border-radius: 18px;
    }

    .intro-text {
        font-size: 0.95rem;
        line-height: 1.75;
        text-align: left;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .feature-card {
        padding: 1.75rem 1.5rem;
        border-radius: 18px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }
    
    .feature-card:active {
        transform: scale(0.98);
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.25rem;
        border-radius: 16px;
    }

    .feature-icon i {
        font-size: 1.75rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }

    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.65;
        color: var(--text-light);
    }

    .about-bottom {
        gap: 1.5rem;
    }

    .about-card {
        padding: 1.75rem 1.5rem;
        border-radius: 18px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-card-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1.25rem auto;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about-card-icon i {
        font-size: 1.75rem;
    }

    .about-card h3 {
        font-size: 1.25rem;
        margin-bottom: 1.125rem;
        margin-top: 0;
        line-height: 1.3;
        text-align: center;
        width: 100%;
    }

    .about-card p {
        font-size: 0.9rem;
        line-height: 1.7;
        color: var(--text-light);
        text-align: center;
        width: 100%;
        margin: 0 auto;
    }

    .user-list {
        width: 100%;
        margin-top: 0.5rem;
    }

    .user-item {
        padding: 0.875rem;
        font-size: 0.9rem;
        border-radius: 10px;
        margin-bottom: 0.5rem;
        text-align: left;
        justify-content: flex-start;
    }
    
    .user-item:active {
        transform: scale(0.98);
        background: #fff3e0;
    }

    .download-section {
        padding: 2.5rem 0;
    }

    .download-section h2 {
        font-size: 1.65rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .download-section .section-subtitle {
        margin-bottom: 2.25rem;
        margin-top: 0.5rem;
    }

    .download-buttons {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .download-card {
        padding: 2rem 1.5rem;
        border-radius: 18px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }
    
    .download-card:active {
        transform: scale(0.98);
    }

    .store-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .download-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .download-card p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        color: var(--text-light);
    }
    
    .download-link {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        padding: 2rem 1.5rem;
        border-radius: 18px;
    }

    .stat-item h3 {
        font-size: 1.85rem;
        margin-bottom: 0.375rem;
        font-weight: 700;
    }

    .stat-item p {
        font-size: 0.875rem;
        opacity: 0.95;
        font-weight: 500;
    }

    .contact-section {
        padding: 2.5rem 0;
    }

    .contact-header {
        margin-bottom: 2.25rem;
    }

    .contact-header h2 {
        font-size: 1.65rem;
        line-height: 1.3;
    }
    
    .contact-header .section-subtitle {
        margin-top: 0.5rem;
    }

    .optimized-contact {
        gap: 1.5rem;
    }

    .contact-card {
        padding: 1.75rem 1.5rem;
        border-radius: 18px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
        gap: 0;
    }
    
    .contact-card:active {
        transform: scale(0.98);
    }

    .contact-icon-wrapper {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        margin: 0 auto 1.25rem auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-icon-wrapper i {
        font-size: 1.75rem;
    }

    .contact-card-content {
        text-align: center;
        width: 100%;
    }

    .contact-card-content h3 {
        font-size: 1.15rem;
        margin-bottom: 0.875rem;
        margin-top: 0;
        text-align: center;
    }

    .contact-card-content p {
        font-size: 0.9rem;
        line-height: 1.7;
        text-align: center;
        margin: 0 auto;
    }
    
    .contact-card-content a {
        justify-content: center;
        margin: 0.5rem auto 0 auto;
        display: inline-flex;
    }

    .btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
        min-height: 44px;
        border-radius: 28px;
    }

    .footer {
        padding: 2.5rem 0 1.25rem;
    }
    
    .footer .container {
        gap: 2rem;
    }

    .footer-section h4 {
        font-size: 1.05rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p {
        font-size: 0.875rem;
        line-height: 1.7;
    }
    
    .footer-section ul li {
        margin-bottom: 0.625rem;
    }
    
    .footer-section ul li a {
        font-size: 0.875rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
        padding-top: 1.5rem;
        line-height: 1.8;
    }

    .social-links {
        gap: 0.875rem;
    }
    
    .social-links a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
    }
    
    .social-links a i {
        font-size: 1.1rem;
    }
}
