/* ============================================ */
/* STYLE.CSS - COMPLETE WEBSITE DESIGN FILE */
/* Saare colors, fonts, layout, mobile design yahan hai */
/* ============================================ */


/* ============================================ */
/* GLOBAL STYLES - Puri website ke liye basic rules */
/* Body font, spacing, box sizing */
/* EDIT KARNA: Colors, fonts change kar sakte ho */
/* ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: #333; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
img { max-width: 100%; height: auto; 
 }

/* ============================================ */
/* HEADER STYLES - Top sticky menu bar */
/* Logo + navigation + hamburger menu */
/* EDIT KARNA: Header background color, logo size */
/* ============================================ */
.header { 
    position: sticky; 
    top: 0; 
    background: rgba(255,255,255,0.95); 
    backdrop-filter: blur(10px); 
    z-index: 1000; 
    padding: 12px 0; 
    box-shadow: 0 2px 20px rgba(0,0,0,0.08); 
}
.header-content { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}
.logo-section { display: flex; align-items: center; gap: 12px; }
.logo-section img { width: 40px; height: 40px; border-radius: 8px; }
.logo-section h2 { font-size: 1.4rem; color: #ff6b35; font-weight: 700; }
.nav-menu { display: flex; list-style: none; gap: 30px; align-items: center; }
.nav-menu a { color: #333; text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color 0.3s; }
.nav-menu a:hover { color: #ff6b35; }
.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 4px; padding: 8px; }
.hamburger span { width: 25px; height: 3px; background: #333; border-radius: 2px; transition: 0.3s; }


/* ============================================ */
/* HERO SECTION STYLES - Main orange banner */
/* Big heading + subtitle + Download button */
/* EDIT KARNA: Background gradient colors, button colors */
/* ============================================ */
.hero { background: linear-gradient(135deg, #ff6b35, #f7931e); color: white; text-align: center; padding: 50px 20px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; }
.hero .subtitle { font-size: 1.3rem; margin-bottom: 2rem; opacity: 0.95; }
.cta-button { display: inline-block; background: #28a745; color: white; padding: 18px 40px; font-size: 1.2rem; text-decoration: none; border-radius: 50px; font-weight: 600; transition: all 0.3s; white-space: nowrap; }
.cta-button:hover { background: #218838; transform: translateY(-2px); }


/* ============================================ */
/* CONTENT SECTIONS - Main white content area */
/* Headings, paragraphs, spacing */
/* ============================================ */
.section { padding: 60px 20px; }
.section h1 { font-size: 2.2rem; margin-bottom: 1.5rem; color: #2c3e50; }
.section h2 { font-size: 2.2rem; margin-bottom: 1.5rem; color: #2c3e50; }
.section h3 { font-size: 1.6rem; margin: 2rem 0 1rem; color: #34495e; }


/* ============================================ */
/* APP TABLE STYLES - App details table */
/* APK size, version info table */
/* ============================================ */
.app-table { background: white; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); overflow: hidden; margin: 2rem 0; }
.app-table table { width: 100%; border-collapse: collapse; }
.app-table th, .app-table td { padding: 20px; text-align: left; border-bottom: 1px solid #eee; }
.app-table th { background: #f8f9fa; font-weight: 600; }

/* ============================================ */
/* SCREENSHOT GALLERY CSS COMPLETELY REMOVED */
/* .screenshot-gallery, .screenshot-item, .screenshot-item img - ALL DELETED */
/* Media queries for screenshot-gallery also REMOVED */
/* ============================================ */


/* ============================================ */
/* APPS GRID - 8 related apps section */
/* BOMIPL, MAAIPL etc cards */
/* MOBILE: 2 cards per row, DESKTOP: 5 cards */
/* ============================================ */
.apps-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
    gap: 25px; 
    margin-top: 3rem; 
}
.app-card { background: white; border-radius: 16px; box-shadow: 0 8px 25px rgba(0,0,0,0.1); overflow: hidden; transition: transform 0.3s; }
.app-card:hover { transform: translateY(-5px); }
.app-card img { width: 100%; height: 180px; object-fit: cover; }
.app-card-content { padding: 25px; }
.app-card h4 { font-size: 1.3rem; margin-bottom: 10px; color: #2c3e50; }
.app-card .cta-button { padding: 12px 25px; font-size: 1rem; width: 100%; text-align: center; line-height: 1.2; white-space: nowrap; }


/* ============================================ */
/* MOBILE MENU - Phone popup menu */
/* Hamburger menu click karne par slide left se aata hai */
/* ============================================ */
.mobile-menu { 
    position: fixed; 
    top: 0; 
    right: -100%; 
    width: 280px; 
    height: 100vh; 
    background: white; 
    padding: 80px 20px 20px; 
    transition: right 0.3s ease; 
    box-shadow: -5px 0 20px rgba(0,0,0,0.1); 
    z-index: 2000; 
}
.mobile-menu.active { right: 0; }
.mobile-menu ul { list-style: none; }
.mobile-menu li { margin-bottom: 20px; }
.mobile-menu a { color: #333; text-decoration: none; font-size: 1.1rem; font-weight: 500; }
.overlay { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.5); 
    opacity: 0; 
    visibility: hidden; 
    transition: all 0.3s; 
    z-index: 1500; 
}
.overlay.active { opacity: 1; visibility: visible; }


/* ============================================ */
/* RESPONSIVE MOBILE DESIGN - Phone + Tablet */
/* MOBILE: Apps 2 column (FIXED), perfect button size */
/* ============================================ */


/* DESKTOP LARGE SCREEN - 1200px+ */
@media (min-width: 1200px) { 
    .apps-grid { grid-template-columns: repeat(5, 1fr); }
}

/* TABLET LARGE - 900-1199px */
@media (min-width: 900px) and (max-width: 1199px) { 
    .apps-grid { grid-template-columns: repeat(4, 1fr); } 
}

/* TABLET MEDIUM - 768-899px */
@media (min-width: 768px) and (max-width: 899px) { 
    .apps-grid { grid-template-columns: repeat(3, 1fr); }
}

/* MOBILE PHONE - 0-767px (MAIN MOBILE DESIGN) - BUTTON SIZE FIXED */
@media (max-width: 767px) { 
    /* APPS: 2 CARDS PER ROW ON MOBILE - PERFECT SIZE */
    .apps-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px;
    }
    /* MOBILE APP CARD SIZE - PERFECT */
    .app-card { 
        background: white; 
        border-radius: 12px; 
        box-shadow: 0 4px 15px rgba(0,0,0,0.08); 
        overflow: hidden; 
        transition: transform 0.3s; 
    }
    .app-card:hover { transform: translateY(-3px); }
    .app-card img { 
        width: 100%; 
        height: 80px; 
        object-fit: cover;
    }
    .app-card-content { padding: 16px; }
    .app-card h4 { 
        font-size: 0.85rem; 
        margin-bottom: 8px; 
        color: #2c3e50; 
        line-height: 1.3;
    }
    /* 🔥 DOWNLOAD APK BUTTON PERFECTLY FIXED */
    .app-card .cta-button { 
        padding: 10px 16px; 
        font-size: 0.75rem; 
        width: 100%; 
        text-align: center; 
        line-height: 1.2; 
        white-space: nowrap; 
        border-radius: 6px;
        margin-top: 4px;
    }
    /* SHOW HAMBURGER MENU ON MOBILE */
    .hamburger { display: flex; }
    .nav-menu { display: none; }
}

@media (max-width: 768px) { 
    .hero { padding: 40px 15px; } 
    .section { padding: 40px 15px; } 
}


/* ============================================ */
/* DISCLAIMER BOX - Legal notice styling */
/* ============================================ */
.disclaimer { background: #f8f9fa; border-left: 5px solid #ff6b35; padding: 25px; margin: 3rem 0; border-radius: 0 8px 8px 0; }


/* ============================================ */
/* COMPACT FOOTER STYLES - HEIGHT REDUCED 40% + MOBILE 2-COLUMN */
/* All spacing optimized - fits smaller than hero section */
/* ============================================ */
.footer {
    /* REDUCED: Padding 60px→30px (50% cut) */
    background: linear-gradient(135deg, #2c3e50, #1a252f);
    color: white;
    padding: 30px 0 15px;
    margin-top: 40px;
}

.footer-content {
    /* REDUCED: Gap 40px→20px, margin-bottom 40px→25px */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.footer-brand img {
    /* REDUCED: Margin 15px→10px */
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.footer-brand p {
    /* REDUCED: Line-height 1.6→1.4 */
    opacity: 0.9;
    line-height: 1.4;
    margin: 0;
    font-size: 0.9rem;
}

.footer h4 {
    /* REDUCED: Margin 20px→12px */
    color: #ff6b35;
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 600;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    /* REDUCED: Margin 12px→8px */
    margin-bottom: 8px;
}

.footer ul li a {
    /* REDUCED: Font-size 0.95rem→0.9rem */
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.3;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #ff6b35;
}

.social-icons {
    /* REDUCED: Margin 15px→10px */
    margin-top: 10px;
}

.social-icons a {
    /* REDUCED: Margin 8px→5px */
    display: block;
    margin-bottom: 5px;
    font-size: 1rem;
}

.footer-bottom {
    /* REDUCED: Padding 25px→15px */
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 15px 0 0;
    text-align: center;
    opacity: 0.8;
    font-size: 0.85rem;
    line-height: 1.3;
}

/* ============================================ */
/* MOBILE FOOTER LINKS - HALF LINE LAYOUT (2 ITEMS PER ROW) */
/* ALL links: Quick Links, Privacy, Terms, Social - 2 column grid */
/* ============================================ */
@media (max-width: 767px) {
    /* MOBILE: ALL footer ul → 2-column grid */
    .footer ul {
        display: grid !important;
        grid-template-columns: 1fr 1fr; /* HALF LINE: 2 items per row */
        gap: 6px 12px; /* TIGHT vertical + horizontal spacing */
        margin: 0;
        padding: 0;
        min-height: 0; /* PREVENT HEIGHT INFLATION */
    }
    
    /* MOBILE: ALL footer li → grid items */
    .footer li {
        margin-bottom: 0 !important;
        padding: 3px 0;
    }
    
    /* MOBILE: ALL footer links → touch-friendly */
    .footer ul li a {
        font-size: 0.85rem;
        line-height: 1.2;
        padding: 8px 6px;
        display: flex;
        align-items: center;
        border-radius: 3px;
        margin: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* MOBILE: Social icons also 2-column */
    .social-icons {
        margin-top: 6px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px 12px;
    }
    
    .social-icons a {
        margin-bottom: 0 !important;
        font-size: 0.9rem;
        padding: 6px 4px;
    }
    
    /* MOBILE: Footer headings tighter */
    .footer h4 {
        margin-bottom: 6px !important;
        font-size: 0.92rem;
    }
}

/* ============================================ */
/* DESKTOP FOOTER LINKS - SINGLE STRAIGHT LINE */
/* Horizontal flex - no wrapping */
/* ============================================ */
@media (min-width: 768px) {
    /* DESKTOP: ALL footer links → single horizontal row */
    .footer ul {
        display: flex !important;
        flex-direction: row;
        flex-wrap: nowrap; /* NO WRAPPING */
        gap: 20px;
        align-items: center;
        margin: 0;
        padding: 0;
    }
    
    .footer li {
        margin-bottom: 0 !important;
    }
    
    .footer ul li a {
        font-size: 0.92rem;
        padding: 4px 0;
        white-space: nowrap;
    }
    
    /* DESKTOP: Social icons horizontal */
    .social-icons {
        display: flex;
        gap: 15px;
        margin-top: 8px;
        flex-wrap: nowrap;
    }
    
    .social-icons a {
        margin-bottom: 0 !important;
        font-size: 1rem;
        padding: 2px 8px;
    }
}

/* ============================================ */
/* UNIVERSAL FOOTER HEIGHT OPTIMIZATION */
/* Applies to both mobile + desktop */
/* ============================================ */
.footer ul li {
    list-style: none;
}

.footer-content {
    gap: 15px; /* GLOBAL: Tighter grid */
}

.footer {
    padding: 25px 0 12px; /* GLOBAL: Ultra compact */
    margin-top: 30px;
}

.footer-bottom {
    padding-top: 12px;
    font-size: 0.82rem;
    line-height: 1.25;
}

/* ============================================ */
/* MOBILE EXTRA COMPACTION - Ultra short footer */
/* ============================================ */
@media (max-width: 767px) {
    .footer {
        padding: 18px 0 8px; /* MOBILE: 18px total padding */
        margin-top: 25px;
    }
    
    .footer-content {
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .footer-brand p {
        font-size: 0.82rem;
        line-height: 1.3;
    }
    
    .footer-bottom {
        padding-top: 8px;
        font-size: 0.78rem;
    }
}

/* ============================================ */
/* ABOUT PAGE SPECIFIC STYLES - Added to main style.css */
/* ============================================ */

/* Remove inline styles from disclaimer - use CSS class */
.disclaimer {
    background: #f8f9fa;
    padding: 25px;
    border-left: 5px solid #ff6b35;
    margin: 3rem 0;
    border-radius: 0 8px 8px 0;
}

.disclaimer ul {
    margin: 15px 0;
}

.disclaimer strong {
    color: #ff6b35;
}

/* Ensure container works properly for about page */
body .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Content typography improvements for about page */
.section p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.7;
}

.section ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.section ul li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.section ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Main heading for about page */
.container h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    text-align: center;
    margin: 40px 0 30px;
    font-weight: 700;
}

/* Section headings */
.container h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin: 40px 0 25px;
    font-weight: 700;
}

.container h3 {
    font-size: 1.8rem;
    color: #34495e;
    margin: 35px 0 20px;
    font-weight: 600;
}

/* Add proper section wrapper for about page content */
.about-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-section .container {
    max-width: 900px;
    margin: 0 auto;
}

/* Mobile adjustments for about page */
@media (max-width: 767px) {
    .container h1 {
        font-size: 2.2rem;
        margin: 30px 0 20px;
    }
    
    .container h2 {
        font-size: 1.8rem;
        margin: 30px 0 20px;
    }
    
    .container h3 {
        font-size: 1.5rem;
        margin: 25px 0 15px;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .disclaimer {
        padding: 20px;
        margin: 2rem 0;
    }
}

/* Print styles for about page */
@media print {
    .disclaimer {
        border-left: 3px solid #ff6b35;
        box-shadow: none;
    }
    
    body {
        background: white;
    }
}

/* ============================================ */
/* PRIVACY PAGE SPECIFIC STYLES - Add to main style.css */
/* ============================================ */

/* Remove inline styles from disclaimer box */
.privacy-disclaimer {
    background: #f8f9fa;
    padding: 25px;
    border-left: 5px solid #ff6b35;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.privacy-disclaimer h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.privacy-disclaimer p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Privacy page summary box */
.privacy-summary {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 6px solid #ff6b35;
    padding: 30px;
    border-radius: 0 12px 12px 0;
    margin: 40px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* Footer text styling */
.privacy-footer {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.9rem;
    opacity: 0.7;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

/* Enhanced list styling for privacy sections */
.privacy-section ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.privacy-section ul li {
    font-size: 1.05rem;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.privacy-section ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Page headings */
.privacy-section h1 {
    font-size: 2.6rem;
    color: #2c3e50;
    text-align: center;
    margin: 40px 0 30px;
    font-weight: 700;
}

.privacy-section h2 {
    font-size: 1.8rem;
    color: #34495e;
    margin: 35px 0 20px;
    font-weight: 600;
    border-bottom: 2px solid #f1f3f4;
    padding-bottom: 10px;
}

/* Effective date styling */
.effective-date {
    font-size: 1rem;
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 25px;
}

/* Container for privacy content */
.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
    background: #f8f9fa;
}

/* Mobile responsive for privacy page */
@media (max-width: 767px) {
    .privacy-container {
        padding: 60px 15px;
    }
    
    .privacy-section h1 {
        font-size: 2.2rem;
        margin: 30px 0 20px;
    }
    
    .privacy-section h2 {
        font-size: 1.6rem;
        margin: 25px 0 15px;
    }
    
    .privacy-disclaimer,
    .privacy-summary {
        padding: 20px 15px;
        margin: 2rem 0;
    }
    
    .privacy-section ul li {
        font-size: 1rem;
        padding-left: 25px;
    }
    
    .privacy-footer {
        font-size: 0.85rem;
        margin-top: 2rem;
        padding: 15px 0;
    }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1024px) {
    .privacy-container {
        padding: 70px 25px;
        max-width: 800px;
    }
}

/* Print styles */
@media print {
    .privacy-container {
        background: white;
        padding: 20px;
    }
    
    .privacy-disclaimer,
    .privacy-summary {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
/* ============================================ */
/* DOWNLOAD STEPS AUTO-SCROLL SLIDER */
/* Perfect mobile + desktop responsive */
/* ============================================ */
.download-slider-container {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 20px;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.slider-track {
    display: flex;
    animation: autoScroll 25s linear infinite;
    gap: 20px;
    padding: 20px 0;
}

.slider-item {
    min-width: 220px;
    flex-shrink: 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.slider-item:hover {
    transform: translateY(-8px);
    animation-play-state: paused;
}

.slider-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.slider-caption {
    padding: 12px 16px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

/* Auto-scroll animation */
@keyframes autoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* 50% because slides duplicated */
}

/* Pause on hover */
.download-slider-container:hover .slider-track {
    animation-play-state: paused;
}

/* MOBILE RESPONSIVE */
@media (max-width: 767px) {
    .download-slider-container {
        margin: 2rem -10px;
        padding: 0 10px;
        border-radius: 0;
    }
    
    .slider-item {
        min-width: 160px;
    }
    
    .slider-item img {
        height: 120px;
    }
    
    .slider-caption {
        font-size: 0.75rem;
        padding: 8px 12px;
    }
    
    @keyframes autoScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
}

/* TABLET */
@media (min-width: 768px) and (max-width: 1024px) {
    .slider-item {
        min-width: 200px;
    }
}

/* DESKTOP LARGE */
@media (min-width: 1200px) {
    .slider-item {
        min-width: 240px;
    }
    
    .slider-item img {
        height: 170px;
    }
}
/* ============================================ */
/* ABOUT PAGE COMPLETE CSS - Add to style.css */
/* Perfect responsive design + mobile optimized */
/* ============================================ */

/* ============================================ */
/* TERMS PAGE SPECIFIC STYLES - Add to main style.css */
/* ============================================ */

/* Terms page container */
.terms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
    background: #f8f9fa;
}

/* Last updated date styling */
.last-updated {
    font-size: 1rem;
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

/* Main heading */
.terms-section h1 {
    font-size: 2.6rem;
    color: #2c3e50;
    text-align: center;
    margin: 40px 0 30px;
    font-weight: 700;
}

/* Section headings with bottom border */
.terms-section h2 {
    font-size: 1.8rem;
    color: #34495e;
    margin: 35px 0 20px;
    font-weight: 600;
    border-bottom: 2px solid #f1f3f4;
    padding-bottom: 10px;
}

/* Enhanced list styling for terms */
.terms-section ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.terms-section ul li {
    font-size: 1.05rem;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.terms-section ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Internal links styling */
.terms-section a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.terms-section a:hover {
    color: #e55a2b;
    text-decoration: underline;
}

/* Footer text */
.terms-footer {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.9rem;
    opacity: 0.7;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

/* Content paragraphs */
.terms-section p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.7;
}

.terms-section strong {
    color: #2c3e50;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .terms-container {
        padding: 60px 15px;
    }
    
    .terms-section h1 {
        font-size: 2.2rem;
        margin: 30px 0 20px;
    }
    
    .terms-section h2 {
        font-size: 1.6rem;
        margin: 25px 0 15px;
    }
    
    .terms-section ul li {
        font-size: 1rem;
        padding-left: 25px;
    }
    
    .terms-footer {
        font-size: 0.85rem;
        margin-top: 2rem;
        padding: 15px 0;
    }
    
    .last-updated {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .terms-container {
        padding: 70px 25px;
        max-width: 800px;
    }
}

/* Print styles */
@media print {
    .terms-container {
        background: white;
        padding: 20px;
    }
    
    .terms-section h2 {
        border-bottom: 1px solid #000;
    }
}












/* ============================================ */
/* CONTACT PAGE SPECIFIC STYLES */
/* ============================================ */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, white 50%);
    padding: 80px 0;
}

.contact-channels {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin: 50px 0;
}

.channels-content {
    flex: 1;
    max-width: 450px;
}

.channels-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.channels-content p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.vertical-line {
    width: 2px;
    background: linear-gradient(to bottom, #ff6b35, #f7931e);
    height: 400px;
    margin: 0 20px;
    border-radius: 2px;
    flex-shrink: 0;
}

.channels-list {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    flex: 1;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s;
}

.channel-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.channel-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.channel-details h4 {
    color: #2c3e50;
    margin: 0 0 5px 0;
    font-size: 1.2rem;
}

.channel-details p {
    color: #666;
    margin: 0 0 10px 0;
    font-size: 0.95rem;
}

.contact-link {
    margin-top: 8px;
    display: inline-block;
    font-size: 0.9rem;
    color: #ff6b35;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #e55a2b;
}

/* MOBILE */
@media (max-width: 767px) {
    .contact-channels {
        flex-direction: column;
        gap: 30px;
    }
    .vertical-line {
        display: none;
    }
    .channels-content h2 {
        font-size: 2rem;
        text-align: center;
    }
    .channels-list {
        padding: 20px;
    }
}



/* ============================================ */
/* PRIVACY PAGE SPECIFIC STYLES */
/* ============================================ */
.privacy-container {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, white 50%);
}

.effective-date {
    font-size: 1rem;
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.privacy-summary {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 6px solid #ff6b35;
    padding: 35px;
    border-radius: 0 16px 16px 0;
    margin: 40px 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.privacy-summary h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 15px;
}

.privacy-section h2 {
    font-size: 1.8rem;
    color: #34495e;
    margin: 40px 0 25px;
    font-weight: 600;
    border-bottom: 2px solid #f1f3f4;
    padding-bottom: 12px;
}

.privacy-section ul {
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
}

.privacy-section ul li {
    font-size: 1.05rem;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.privacy-section ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.2rem;
}

.privacy-section a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

.privacy-section a:hover {
    color: #e55a2b;
    text-decoration: underline;
}

.privacy-disclaimer {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-left: 5px solid #ff6b35;
    padding: 30px;
    margin: 40px 0;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.privacy-disclaimer h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* MOBILE */
@media (max-width: 767px) {
    .privacy-container {
        padding: 60px 0;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
        margin: 30px 0 20px;
    }
    
    .privacy-section ul li {
        font-size: 1rem;
        padding-left: 30px;
    }
    
    .privacy-summary,
    .privacy-disclaimer {
        padding: 25px 20px;
        margin: 2rem 0;
    }
}
