/* About Hero Section */
    .about-hero {
        padding: 100px 0 120px;
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
        color: var(--white);
        position: relative;
        overflow: hidden;
        margin-top: 80px;
    }
    .about-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }
    .about-hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
    }
    .hero-badge {
        display: inline-block;
        background: rgba(255, 215, 0, 0.15);
        color: var(--primary);
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        padding: 8px 20px;
        border-radius: 50px;
        margin-bottom: 32px;
        border: 1px solid rgba(255, 215, 0, 0.3);
    }
    .about-hero-title {
        font-size: 64px;
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 32px;
        color: var(--white);
        letter-spacing: -1px;
    }
    .about-hero-subtitle {
        font-size: 20px;
        color: var(--gray-300);
        line-height: 1.8;
        margin-bottom: 64px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .announcement-card:hover > div {
        border-color: var(--primary);
        box-shadow: 0 8px 24px rgba(255, 215, 0, 0.15);
        transform: translateY(-4px);
    }

    /* Mobile Responsive */
    @media (max-width: 1024px) {
        .announcement-card > div {
            grid-template-columns: 1fr !important;
            gap: 24px !important;
        }

        .announcement-card > div > div:last-child {
            text-align: left !important;
        }
    }

    @media (max-width: 768px) {
        .about-hero {
            padding: 120px 0 80px;
        }

        .about-hero-title {
            font-size: 36px;
        }

        .about-hero-subtitle {
            font-size: 16px;
        }

        .announcement-card > div {
            padding: 24px !important;
        }

        .announcement-card h3 {
            font-size: 20px !important;
        }

        .announcement-card p {
            font-size: 15px !important;
        }
    }

    @media (max-width: 480px) {
        .about-hero-title {
            font-size: 28px;
        }

        .announcement-card > div {
            padding: 20px !important;
        }

        .announcement-card h3 {
            font-size: 18px !important;
        }
    }
