/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Vazirmatn', 'Tahoma', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    direction: rtl;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Content Wrapper */
.main-content {
    margin-top: 80px; /* Account for fixed header */
    min-height: calc(100vh - 80px - 400px); /* Viewport height minus header and footer */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    flex-shrink: 0;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #666;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.nav-link i {
    font-size: 1.1rem;
}

/* Header Social Media Links */
.header-social-links {
    display: flex !important;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
    z-index: 1001;
}

.header-social-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    z-index: 1002;
}

.header-social-link:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.header-social-link i {
    font-size: 1.2rem;
}

/* WhatsApp specific styling */
.header-social-link[aria-label="واتساپ"]:hover {
    background: #25d366;
    border-color: #25d366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Telegram specific styling */
.header-social-link[aria-label="تلگرام"]:hover {
    background: #0088cc;
    border-color: #0088cc;
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
}

/* Instagram specific styling */
.header-social-link[aria-label="اینستاگرام"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #dc2743;
    box-shadow: 0 4px 12px rgba(220, 39, 67, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    flex-shrink: 0;
}

.bar {
    width: 25px;
    height: 3px;
    background: #667eea;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-container {
        gap: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 0;
        gap: 0;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-link span {
        display: inline;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        padding: 1.5rem 2rem;
        width: 100%;
        justify-content: flex-start;
        gap: 1rem;
        color: white;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }
    
    .nav-link.active {
        background: rgba(255, 255, 255, 0.2);
        color: white;
    }
    
    .nav-link i {
        font-size: 1.3rem;
        width: 24px;
        text-align: center;
    }
    
    .nav-link span {
        font-size: 1.1rem;
        font-weight: 500;
    }
    
    /* Hide header social media links on mobile only */
    .header-social-links {
        display: none !important;
    }
}

/* Ensure header social media links are visible on desktop */
@media (min-width: 769px) {
    .header-social-links {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .header-social-link {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-logo-image {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.app-logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.4));
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .app-logo-image {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .app-logo-image {
        width: 120px;
        height: 120px;
    }
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-size: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Download Section */
.download {
    background: #f8f9fa;
    padding: 5rem 0;
    text-align: center;
}

.download-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.download-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.download-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #333;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    background: linear-gradient(135deg, #2980b9, #1f5f8b);
}

.download-btn[download] {
    background: linear-gradient(135deg, #27ae60, #229954);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.download-btn[download]:hover {
    background: linear-gradient(135deg, #229954, #1e8449);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.download-btn[download]::after {
    content: " ⬇";
    font-size: 0.9rem;
    opacity: 0.8;
}

.download-btn i {
    font-size: 1.2rem;
}

.qr-section h3 {
    margin-bottom: 1rem;
    color: #333;
}

.qr-code {
    display: inline-block;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-size: 4rem;
    color: #667eea;
}

/* Statistics Section */
.statistics {
    background: white;
    padding: 5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
    color: #667eea;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #34495e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

/* WhatsApp specific styling */
.social-link[aria-label="واتساپ"]:hover {
    background: #25d366;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* Telegram specific styling */
.social-link[aria-label="تلگرام"]:hover {
    background: #0088cc;
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.3);
}

/* Instagram specific styling */
.social-link[aria-label="اینستاگرام"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.3);
}

.contact-info {
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #bdc3c7;
}

.contact-item i {
    color: #667eea;
    width: 20px;
}

.contact-item a {
    color: #bdc3c7;
    text-decoration: none;
}

.contact-item a:hover {
    color: #667eea;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #bdc3c7;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-bottom-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: #667eea;
}

.separator {
    color: #34495e;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: #667eea;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    background: #764ba2;
    transform: translateY(-2px);
}

.back-to-top.show {
    display: flex;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-item {
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }

    .hero {
        padding: 2rem 0;
        min-height: 60vh;
    }

    .features,
    .download,
    .statistics {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .download-options {
        flex-direction: column;
        align-items: center;
    }

    .download-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .back-to-top {
        left: 1rem;
        bottom: 1rem;
        width: 45px;
        height: 45px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .back-to-top {
        display: none;
    }

    .main-content {
        margin-top: 0;
    }

    .hero {
        background: white !important;
        color: black !important;
    }
}

/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
    margin-top: 80px;
}

.about-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Story Section */
.story {
    padding: 5rem 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #666;
}

.story-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-visual i {
    font-size: 8rem;
    color: #667eea;
    opacity: 0.1;
}

.growth-indicator {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #667eea;
}

.growth-indicator span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.growth-indicator small {
    color: #666;
    font-size: 0.9rem;
}

/* Mission Vision Values Section */
.mission-vision {
    padding: 5rem 0;
    background: #f8f9fa;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mission-card,
.vision-card,
.values-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.mission-card:hover,
.vision-card:hover,
.values-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mission-icon,
.vision-icon,
.values-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.mission-card h3,
.vision-card h3,
.values-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mission-card p,
.vision-card p,
.values-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Features Timeline Section */
.features-timeline {
    padding: 5rem 0;
    background: white;
}

.feature-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.feature-item::before {
    content: '';
    position: absolute;
    right: 120px;
    top: 0;
    bottom: -3rem;
    width: 2px;
    background: #667eea;
}

.feature-year {
    background: #667eea;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    min-width: 80px;
    text-align: center;
    height: fit-content;
}

.feature-content {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    border: 1px solid #e9ecef;
}

.feature-content h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-content ul {
    list-style: none;
    margin-top: 1rem;
    padding-right: 0;
}

.feature-content li {
    margin-bottom: 0.5rem;
    padding-right: 1.5rem;
    position: relative;
    color: #666;
}

.feature-content li::before {
    content: '✓';
    color: #27ae60;
    position: absolute;
    right: 0;
    font-weight: bold;
}

/* Team Section */
.team {
    padding: 5rem 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.member-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.member-avatar i {
    font-size: 2.5rem;
    color: white;
}

.team-member h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.member-role {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-bio {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.member-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero {
        padding: 4rem 0 2rem;
    }

    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .story-visual i {
        font-size: 6rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-item::before {
        display: none;
    }

    .feature-year {
        align-self: center;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }

    .story-text h2 {
        font-size: 2rem;
    }

    .feature-content {
        padding: 1rem;
    }

    .team-member {
        padding: 2rem 1.5rem;
    }
}

/* Download Page Specific Styles */
.download-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
    margin-top: 80px;
}

.download-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.download-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.app-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.app-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
}

.app-details h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.app-details p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.rating i {
    color: #ffd700;
}

.download-options-section {
    padding: 5rem 0;
    background: white;
}

.download-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.platform-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.platform-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
}

.platform-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.platform-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.platform-features {
    list-style: none;
    margin-bottom: 2rem;
}

.platform-features li {
    margin-bottom: 0.5rem;
    padding-right: 1.5rem;
    position: relative;
    color: #666;
}

.platform-features li::before {
    content: '✓';
    color: #27ae60;
    position: absolute;
    right: 0;
    font-weight: bold;
}

.platform-btn {
    width: 100%;
    justify-content: center;
}

.qr-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.qr-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.qr-instructions h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.qr-instructions p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.qr-instructions ol {
    text-align: right;
    padding-right: 1.5rem;
}

.qr-instructions li {
    margin-bottom: 1rem;
    color: #666;
    font-size: 1rem;
}

.qr-code-large {
    display: flex;
    justify-content: center;
}

.qr-code {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #667eea;
}

.qr-code i {
    font-size: 6rem;
    color: #667eea;
    margin-bottom: 1rem;
    display: block;
}

.requirements-section {
    padding: 5rem 0;
    background: white;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.requirement-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e9ecef;
}

.requirement-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.requirement-card ul {
    list-style: none;
    padding: 0;
}

.requirement-card li {
    margin-bottom: 0.5rem;
    padding-right: 1.5rem;
    position: relative;
    color: #666;
}

.requirement-card li::before {
    content: '•';
    color: #667eea;
    position: absolute;
    right: 0;
    font-weight: bold;
}

/* Payment Page Specific Styles */
.payment-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
    margin-top: 80px;
}

.payment-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.payment-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.pricing-section {
    padding: 5rem 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid #667eea;
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 50%;
    transform: translateX(50%);
    background: #667eea;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.price {
    margin-bottom: 2rem;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
}

.price .currency {
    font-size: 1.2rem;
    color: #666;
}

.price .period {
    font-size: 1rem;
    color: #999;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    margin-bottom: 0.75rem;
    padding-right: 1.5rem;
    position: relative;
    color: #666;
}

.pricing-features li::before {
    content: '✓';
    color: #27ae60;
    position: absolute;
    right: 0;
    font-weight: bold;
}

.payment-methods {
    padding: 5rem 0;
    background: #f8f9fa;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.payment-method-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.payment-method-card:hover {
    transform: translateY(-10px);
}

.payment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
}

.payment-method-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.payment-method-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.payment-features {
    list-style: none;
    padding: 0;
}

.payment-features li {
    margin-bottom: 0.5rem;
    padding-right: 1.5rem;
    position: relative;
    color: #666;
}

.payment-features li::before {
    content: '✓';
    color: #27ae60;
    position: absolute;
    right: 0;
    font-weight: bold;
}

.security-section {
    padding: 5rem 0;
    background: white;
}

.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.security-info h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.security-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.security-features {
    list-style: none;
    padding: 0;
}

.security-features li {
    margin-bottom: 1rem;
    padding-right: 1.5rem;
    position: relative;
    color: #666;
}

.security-features li::before {
    content: '✓';
    color: #27ae60;
    position: absolute;
    right: 0;
    font-weight: bold;
}

.security-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.security-badge i {
    font-size: 2rem;
    color: #667eea;
}

.security-badge span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.faq-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.faq-list {
    margin-top: 3rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    color: #333;
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: #667eea;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

/* Contact Page Specific Styles */
.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
    margin-top: 80px;
}

.contact-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-info-section {
    padding: 5rem 0;
    background: white;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.contact-info-card:hover {
    transform: translateY(-10px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.contact-info-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-info-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-info-card small {
    color: #999;
    font-size: 0.9rem;
}

.contact-form-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-info h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.contact-form-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-feature i {
    color: #27ae60;
    font-size: 1.2rem;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.social-media-section {
    padding: 5rem 0;
    background: white;
}

.social-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.social-media-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
}

.social-media-card:hover {
    transform: translateY(-10px);
    text-decoration: none;
    color: inherit;
}

.social-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.social-media-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.social-media-card p {
    color: #667eea;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.followers {
    color: #999;
    font-size: 0.9rem;
}

.contact-faq-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .download-hero-content h1,
    .payment-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .app-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .qr-content,
    .security-content,
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-grid,
    .download-platforms,
    .payment-methods-grid,
    .contact-info-grid,
    .social-media-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .download-hero-content h1,
    .payment-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2rem;
    }
    
    .app-info {
        padding: 1.5rem;
    }
    
    .platform-card,
    .pricing-card,
    .payment-method-card,
    .contact-info-card,
    .social-media-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
}

/* Error Pages Styles */
.error-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: calc(100vh - 80px - 400px);
    display: flex;
    align-items: center;
}

.error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-icon {
    font-size: 6rem;
    color: #dc3545;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.error-title {
    font-size: 8rem;
    font-weight: 700;
    color: #dc3545;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(220, 53, 69, 0.3);
}

.error-subtitle {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.error-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.error-help {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    text-align: right;
}

.error-help h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.error-help ul {
    list-style: none;
    padding: 0;
}

.error-help li {
    margin-bottom: 0.5rem;
    padding-right: 1.5rem;
    position: relative;
    color: #666;
}

.error-help li::before {
    content: '•';
    color: #dc3545;
    position: absolute;
    right: 0;
    font-weight: bold;
}

.error-status {
    background: #e9ecef;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #dc3545;
}

.error-status p {
    margin-bottom: 0.5rem;
    color: #495057;
}

.error-status strong {
    color: #333;
}

/* Animation for error icon */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design for Error Pages */
@media (max-width: 768px) {
    .error-section {
        padding: 4rem 0;
    }
    
    .error-title {
        font-size: 6rem;
    }
    
    .error-subtitle {
        font-size: 2rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .error-title {
        font-size: 4rem;
    }
    
    .error-subtitle {
        font-size: 1.5rem;
    }
    
    .error-icon {
        font-size: 4rem;
    }
    
    .error-help {
        padding: 1.5rem;
    }
}

/* Detailed Address Section */
.detailed-address-section {
    padding: 5rem 0;
    background: white;
}

.address-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.address-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #e9ecef;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.address-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
}

.address-details h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.address-lines {
    margin-bottom: 2rem;
}

.address-lines p {
    margin-bottom: 0.75rem;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.address-lines strong {
    color: #333;
    font-weight: 600;
}

.address-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.address-actions .btn {
    min-width: 140px;
}

.map-placeholder {
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px dashed #667eea;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.map-placeholder i {
    font-size: 4rem;
    color: #667eea;
    margin-bottom: 1.5rem;
}

.map-placeholder h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.map-placeholder p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.map-placeholder small {
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Design for Address Section */
@media (max-width: 768px) {
    .address-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .address-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .address-actions .btn {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .address-card {
        padding: 2rem 1.5rem;
    }
    
    .map-placeholder {
        padding: 2rem 1.5rem;
    }
    
    .map-placeholder i {
        font-size: 3rem;
    }
}

/* Policy Pages Styles */
.policy-content {
    padding: 4rem 0;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.policy-section h3 {
    color: #444;
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
}

.policy-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-section ul {
    margin: 1rem 0;
    padding-right: 1.5rem;
}

.policy-section li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #667eea;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.last-updated {
    font-style: italic;
    color: #999;
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

/* Sitemap Styles */
.sitemap-content {
    padding: 4rem 0;
}

.sitemap-section {
    margin-bottom: 3rem;
}

.sitemap-section h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.sitemap-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.sitemap-category {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.sitemap-category h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #667eea;
    padding-bottom: 0.5rem;
}

.sitemap-category ul {
    list-style: none;
    padding: 0;
}

.sitemap-category li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    padding-right: 1rem;
    position: relative;
}

.sitemap-category li:before {
    content: "•";
    color: #667eea;
    position: absolute;
    right: 0;
}

.sitemap-category a {
    color: #667eea;
    text-decoration: none;
}

.sitemap-category a:hover {
    text-decoration: underline;
}

.contact-info-sitemap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-info-sitemap .contact-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.contact-info-sitemap h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-info-sitemap p {
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-info-sitemap a {
    color: #667eea;
    text-decoration: none;
}

.contact-info-sitemap a:hover {
    text-decoration: underline;
}

/* Download Page Additional Styles */
.platform-note {
    color: #999;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-align: center;
}

.btn-secondary {
    background: #6c757d;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-secondary.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary.disabled:hover {
    transform: none;
    background: #6c757d;
}

.qr-image {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.qr-note {
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
    text-align: center;
}

/* Responsive Design for Policy and Sitemap Pages */
@media (max-width: 768px) {
    .policy-content,
    .sitemap-content {
        padding: 2rem 0;
    }
    
    .policy-section h2,
    .sitemap-section h2 {
        font-size: 1.6rem;
    }
    
    .sitemap-links {
        grid-template-columns: 1fr;
    }
    
    .contact-info-sitemap {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .policy-section,
    .sitemap-section {
        margin-bottom: 2rem;
    }
    
    .sitemap-category,
    .contact-info-sitemap .contact-item {
        padding: 1.5rem;
    }
}

/* ===== TEXT READABILITY IMPROVEMENTS ===== */
/* Global text readability styles for better contrast across all pages */

/* Text Readability Improvements */
.payment-hero-content p,
.section-title + p,
.pricing-card p,
.payment-method-card p,
.security-info p,
.faq-answer p {
    color: #333333 !important;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Hero section subtitle */
.payment-hero-content p {
    color: #ffffff !important;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

/* Section descriptions */
.section-title + p {
    color: #555555 !important;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
}

/* Card descriptions */
.pricing-card p,
.payment-method-card p {
    color: #444444 !important;
    font-size: 1rem;
}

/* Security section text */
.security-info p {
    color: #333333 !important;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* FAQ answers */
.faq-answer p {
    color: #333333 !important;
    font-size: 1rem;
    line-height: 1.7;
    padding: 0 1rem;
}

/* List items */
.pricing-features li,
.payment-features li,
.security-features li {
    color: #333333 !important;
    font-weight: 500;
}

/* Price text */
.price .amount {
    color: #2c3e50 !important;
    font-weight: bold;
}

.price .currency {
    color: #34495e !important;
    font-weight: 600;
}

.price .period {
    color: #7f8c8d !important;
    font-weight: 500;
}

/* Badge text */
.pricing-badge {
    color: #ffffff !important;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Ensure all text has proper contrast */
h1, h2, h3, h4, h5, h6 {
    color: #2c3e50 !important;
}

/* Button text */
.btn {
    color: #ffffff !important;
    font-weight: 600;
}

.btn-outline {
    color: #3498db !important;
    border-color: #3498db;
}

.btn-outline:hover {
    color: #ffffff !important;
    background-color: #3498db;
}

/* General paragraph text improvements */
p {
    color: #333333;
    line-height: 1.6;
}

/* List text improvements */
ul li, ol li {
    color: #333333;
    line-height: 1.6;
}

/* Section subtitle improvements */
.section-subtitle,
.page-subtitle,
.content-subtitle {
    color: #555555 !important;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Card text improvements */
.card p,
.card-content p,
.info-card p {
    color: #444444 !important;
    line-height: 1.6;
}

/* Form text improvements */
.form-group label,
.form-label {
    color: #2c3e50 !important;
    font-weight: 600;
}

.form-text,
.help-text {
    color: #666666 !important;
    font-size: 0.9rem;
}

/* Table text improvements */
table th,
.table th {
    color: #2c3e50 !important;
    font-weight: 600;
}

table td,
.table td {
    color: #333333 !important;
}

/* Alert and notification text */
.alert p,
.notification p,
.message p {
    color: #333333 !important;
    line-height: 1.6;
}

/* Footer text improvements */
footer p,
.footer-content p {
    color: #666666 !important;
    line-height: 1.6;
}

/* Navigation text improvements */
.nav-link,
.navbar-nav .nav-link {
    color: #2c3e50 !important;
    font-weight: 500;
}

.nav-link:hover,
.navbar-nav .nav-link:hover {
    color: #3498db !important;
}

/* ===== QR CODE STYLES ===== */
.qr-code {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.qr-image {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.qr-code p {
    color: #666666;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

.qr-section {
    margin-top: 2rem;
    text-align: center;
}

.qr-section h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Download page specific QR styles */
.qr-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.qr-instructions {
    text-align: right;
}

.qr-instructions h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.qr-instructions p {
    color: #555555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.qr-instructions ol {
    color: #333333;
    line-height: 1.8;
    padding-right: 1.5rem;
}

.qr-instructions li {
    margin-bottom: 0.5rem;
}

.qr-code-large {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive design for QR sections */
@media (max-width: 768px) {
    .qr-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .qr-instructions {
        text-align: center;
    }
    
    .qr-image {
        max-width: 150px;
    }
}

/* ===== DOWNLOAD SECTION LAYOUT ===== */
.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.download-main {
    text-align: right;
}

.download-main h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.download-main p {
    color: #555555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.download-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    background: linear-gradient(135deg, #2980b9, #1f5f8b);
}

.download-btn[download] {
    background: linear-gradient(135deg, #27ae60, #229954);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.download-btn[download]:hover {
    background: linear-gradient(135deg, #229954, #1e8449);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.download-btn[download]::after {
    content: " ⬇";
    font-size: 0.9rem;
    opacity: 0.8;
}

.download-btn i {
    font-size: 1.2rem;
}

.qr-section {
    text-align: center;
    padding: 2rem;
}

.qr-section h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.qr-code {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
}

.qr-image {
    max-width: 180px;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.qr-code p {
    color: #666666;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

/* Responsive design for download section */
@media (max-width: 1024px) {
    .download-content {
        gap: 2rem;
    }
    
    .download-main h2 {
        font-size: 2rem;
    }
    
    .qr-image {
        max-width: 160px;
    }
}

@media (max-width: 768px) {
    .download-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .download-main {
        text-align: center;
    }
    
    .download-options {
        align-items: center;
    }
    
    .qr-image {
        max-width: 140px;
    }
    
    .download-main h2 {
        font-size: 1.8rem;
    }
    
    .download-main p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .download-main h2 {
        font-size: 1.6rem;
    }
    
    .download-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .qr-code {
        padding: 1.5rem;
    }
    
    .qr-image {
        max-width: 120px;
    }
}

/* ===== PLATFORM DOWNLOAD BUTTONS ===== */
.platform-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    margin-bottom: 1rem;
}

.platform-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    background: linear-gradient(135deg, #2980b9, #1f5f8b);
    color: white;
    text-decoration: none;
}

.platform-btn[download] {
    background: linear-gradient(135deg, #27ae60, #229954);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.platform-btn[download]:hover {
    background: linear-gradient(135deg, #229954, #1e8449);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.platform-btn[download]::after {
    content: " ⬇";
    font-size: 0.9rem;
    opacity: 0.8;
}

.platform-btn.disabled {
    background: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

.platform-btn.disabled:hover {
    transform: none;
    background: #6c757d;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.platform-btn i {
    font-size: 1.2rem;
}

/* ===== LOGO STYLES ===== */
.logo-image {
    height: 40px;
    width: auto;
    border-radius: 8px;
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.logo-link:hover .logo-image {
    transform: scale(1.05);
}

.footer-logo-image {
    height: 50px;
    width: auto;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ===== HERO LOGO STYLES ===== */
.hero-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.hero-logo-image {
    height: 80px;
    width: auto;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-logo-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Responsive logo sizes */
@media (max-width: 768px) {
    .logo-image {
        height: 35px;
    }
    
    .footer-logo-image {
        height: 40px;
    }
    
    .hero-logo-image {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 30px;
    }
    
    .footer-logo-image {
        height: 35px;
    }
    
    .hero-logo-image {
        height: 50px;
    }
}

/* ===== PHONE NUMBER DIRECTION FIX ===== */
/* Fix phone number direction for RTL languages */
.phone-number {
    direction: ltr !important;
    text-align: left !important;
    unicode-bidi: bidi-override;
    font-family: 'Courier New', monospace;
}

/* Fix all numeric content direction in contact cards */
.contact-info-card p:not(.phone-number),
.social-media-card p:not(.phone-number) {
    direction: ltr;
    text-align: center;
}

/* Fix footer contact items */
.footer .contact-item .phone-number {
    direction: ltr !important;
    text-align: left !important;
    unicode-bidi: bidi-override;
}

