/* About Page Layout Fixes - Ensure Content is Visible */

.about-hero {
    position: relative;
    padding: 100px 0 60px !important;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a0f2e 25%, #2d1b69 50%, #1e0a3c 75%, #0f0a1a 100%);
    overflow: visible !important;
    min-height: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero .container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.about-hero .hero-content {
    position: relative !important;
    z-index: 100 !important;
    text-align: center !important;
    max-width: 900px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 40px 30px !important;
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
}

.about-hero .hero-badge {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50px;
    color: white !important;
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0 0 25px 0 !important;
    position: relative;
    overflow: hidden;
}

.about-hero .badge-icon {
    font-size: 1.2rem;
}

.about-hero .badge-text {
    color: white !important;
}

.about-hero .hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem) !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    margin: 0 0 20px 0 !important;
    color: #ffffff !important;
    text-align: center !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8) !important;
    width: 100% !important;
}

.about-hero .title-line {
    display: block !important;
    color: #ffffff !important;
    text-align: center !important;
}

.about-hero .gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.about-hero .hero-description {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    max-width: 700px !important;
    margin: 0 0 30px 0 !important;
    text-align: center !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
}

.about-hero .hero-stats {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
    margin: 30px 0 0 0 !important;
    width: 100% !important;
}

.about-hero .stat-item {
    text-align: center !important;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 15px !important;
    padding: 20px 25px !important;
    min-width: 100px !important;
    transition: all 0.3s ease !important;
}

.about-hero .stat-item:hover {
    transform: translateY(-5px) !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(102, 126, 234, 0.5) !important;
}

.about-hero .stat-number {
    display: block !important;
    font-size: 2rem !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    line-height: 1 !important;
    margin-bottom: 6px !important;
}

.about-hero .stat-label {
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
}

.about-hero .stat-divider {
    width: 2px !important;
    height: 35px !important;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.4), transparent) !important;
}

/* Story Section Spacing */
.story-section {
    padding-top: 60px !important;
}

@media (max-width: 768px) {
    .about-hero {
        padding: 90px 0 50px !important;
    }
    
    .about-hero .hero-content {
        padding: 30px 20px !important;
    }
    
    .about-hero .hero-title {
        font-size: 1.8rem !important;
    }
    
    .about-hero .hero-stats {
        gap: 15px !important;
    }
    
    .about-hero .stat-divider {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 80px 0 40px !important;
    }
    
    .about-hero .hero-content {
        padding: 25px 15px !important;
    }
    
    .about-hero .hero-title {
        font-size: 1.6rem !important;
    }
    
    .about-hero .hero-description {
        font-size: 0.95rem !important;
    }
    
    .about-hero .stat-item {
        min-width: 90px !important;
        padding: 15px 20px !important;
    }
    
    .about-hero .stat-number {
        font-size: 1.8rem !important;
    }
}
