.about-hero {
    position: relative;
    height: 500px;
    background: url('/static/images/about-banner.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}
.about-hero .hero-text h1 {
    font-size: 70px;
    font-weight: 900;
    color: #fabe23;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}
.about-hero .hero-text p {
    font-size: 20px;
    font-weight: 600;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.about-container {
    display: flex;
    margin-top: 60px;
    gap: 80px;
}

.about-sidebar {
    flex: 0 0 250px;
    background: #fabe23;
    padding: 20px 25px;
    border-radius: 20px;
    height: fit-content;
    position: sticky;
    top: 100px;
    box-shadow: 0 4px 15px rgba(250, 190, 35, 0.3);
}
.about-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.about-sidebar li {
    margin-bottom: 0;
}
.about-sidebar a {
    color: #000;
    font-weight: 800;
    text-decoration: none;
    display: block;
    padding: 10px 10px;
    border-radius: 8px;
    transition: 0.2s;
    margin-bottom: 5px;
}
.about-sidebar a:hover {
    background: #000;
    color: #fff;
}
.about-sidebar a.active {
    background: #000;
    color: #fabe23;
}

.about-content {
    flex: 1;
}
.about-section {
    margin-bottom: 10px;
    scroll-margin-top: 100px;
}
.about-section h2 {
    font-size: 40px;
    font-weight: 900;
    color: #000;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: #fabe23;
}
.about-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
    text-align: justify;
}
.about-section img {
    width: 100%;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    margin-top: 20px;
}

/* ========== PROFILE SECTION - EXACT MATCH TO ORIGINAL ========== */
.profile-special {
    margin-bottom: 100px;
}

.profile-special h2 {
    margin-bottom: 40px;
}

.profile-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Left Column: Text and Image */
.profile-left {
    flex: 0 0 50%;
    max-width: 50%;
}

.profile-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    text-align: justify;
    margin-bottom: 40px;
}

.profile-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    margin: 0;
}

/* Right Column: Statistics and Certificates */
.profile-right {
    flex: 0 0 45%;
    max-width: 45%;
}

/* Statistics */
.profile-stats {
    background: #fff;
    padding: 0;
    margin-bottom: 50px;
}

.stat-item {
    margin-bottom: 60px;
    text-align: center;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-size: 100px;
    font-weight: 900;
    color: #fabe23;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -2px;
}

.stat-unit {
    font-size: 40px;
    font-weight: 900;
    color: #fabe23;
}

.stat-label {
    font-size: 18px;
    color: #000;
    font-weight: 400;
    margin-top: 10px;
}

/* Certificates */
.profile-certificates {
    background: #fff;
    padding: 0;
}

.profile-certificates h3 {
    font-size: 36px;
    font-weight: 900;
    color: #000;
    margin-bottom: 20px;
}

.profile-certificates p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    text-align: justify;
    margin: 0;
}

/* ========== HISTORY SECTION - TIMELINE DESIGN ========== */
.history-special {
    background: #000 url('/static/images/about/history.jpg') center/cover no-repeat;
    background-attachment: fixed;
    border-radius: 20px;
    padding: 80px 0;
    margin-left: 0;
    margin-right: 0;
    position: relative;
    margin-top: 20px;
}

.history-timeline {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 100px;
    position: relative;
    z-index: 2;
}

.timeline-item {
    display: flex;
    align-items: stretch;
    justify-content: center;
    margin-bottom: 60px;
    position: relative;
    gap: 40px;
    min-height: 120px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Left side - Year */
.timeline-left {
    flex: 0 0 400px;
    width: 400px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-year {
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
}

.year-yellow {
    color: #fabe23;
}

.year-black {
    color: #fff;
}

/* Vertical divider line */
.timeline-divider {
    width: 3px;
    align-self: stretch;
    background: #fabe23;
    flex-shrink: 0;
}

/* Right side - Description */
.timeline-right {
    flex: 1;
    max-width: 600px;
    padding: 0;
    display: flex;
    align-items: center;
}

.timeline-right p {
    font-size: 20px;
    line-height: 1.6;
    color: #fabe23;
    margin: 0;
    text-align: left;
    font-weight: 600;
}

/* News videos grid */

/* Responsive */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
    }
    .about-sidebar {
        position: relative;
        top: 0;
        width: 100%;
    }
    .about-hero .hero-text h1 {
        font-size: 50px;
    }

    /* Profile responsive */
    .profile-container {
        flex-direction: column;
    }
    .profile-left,
    .profile-right {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .stat-number {
        font-size: 80px;
    }
    .stat-unit {
        font-size: 32px;
    }
    .profile-certificates h3 {
        font-size: 28px;
    }

    /* History timeline responsive */
    .timeline-item {
        flex-direction: column;
        margin-bottom: 40px;
    }
    .timeline-left {
        flex: 1 1 100%;
        max-width: 100%;
        min-height: 120px;
    }
    .timeline-year {
        font-size: 80px;
    }
    .timeline-divider {
        width: 100%;
        height: 3px;
    }
    .timeline-right {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 30px;
    }
    .timeline-right p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 400px;
    }
    .about-hero .hero-text h1 {
        font-size: 40px;
    }
    .about-hero .hero-text p {
        font-size: 16px;
    }
    .about-section h2 {
        font-size: 32px;
    }
    .about-section p {
        font-size: 16px;
    }

    .stat-number {
        font-size: 60px;
    }
    .stat-unit {
        font-size: 24px;
    }
    .stat-label {
        font-size: 16px;
    }
    .profile-text {
        font-size: 15px;
    }

    /* History timeline mobile */
    .timeline-year {
        font-size: 60px;
    }
    .timeline-right p {
        font-size: 15px;
    }
    .timeline-right {
        padding: 20px;
    }
}


/* ============================================
   NEWS CARDS SECTION - Blacklion Style (About Page)
   ============================================ */

/* News Section Container */
#news.about-section {
    padding: 60px 0;
    background-color: #ffffff;
}

#news.about-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #000000;
}

/* News Grid - 4 columns layout */
.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Individual News Card */
.news-card {
    display: block;
    text-decoration: none;
    overflow: hidden;
    border-radius: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    background-color: #ffffff;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* News Image Container */
.news-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    background-color: #f0f0f0;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

/* News Info Block - Black background section */
.news-info {
    background-color: #000000;
    padding: 20px;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background-color 0.3s ease;
}

.news-card:hover .news-info {
    background-color: #fabe23;
}

/* News Title */
.news-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.news-card:hover .news-title {
    color: #000000;
}

/* News Meta Container - Date and Number */
.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

/* News Date */
.news-date {
    color: #fabe23;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.news-card:hover .news-date {
    color: #000000;
}

/* News Order Number */
.news-number {
    color: #fabe23;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.news-card:hover .news-number {
    color: #000000;
}

/* ============================================
   RESPONSIVE BREAKPOINTS FOR NEWS
   ============================================ */

/* Large Tablets - 3 columns */
@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .news-image {
        height: 220px;
    }
}

/* Tablets - 2 columns */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 15px;
    }

    .news-image {
        height: 200px;
    }

    .news-title {
        font-size: 16px;
        -webkit-line-clamp: 2;
    }

    .news-info {
        padding: 15px;
        min-height: 120px;
    }

    #news.about-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

/* Mobile - 1 column */
@media (max-width: 480px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-image {
        height: 250px;
    }

    .news-title {
        font-size: 18px;
        -webkit-line-clamp: 3;
    }

    .news-info {
        padding: 20px;
        min-height: 140px;
    }

    #news.about-section {
        padding: 40px 0;
    }

    #news.about-section h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .news-image {
        height: 220px;
    }

    .news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* ============================================
   MORE NEWS BUTTON - EXACT MATCH TO HOME PAGE
   ============================================ */

#news.about-section .btn-warning,
#news.about-section .more-news-btn {
    background-color: #fabe23;
    border: none;
    color: #000;
    font-weight: 700;
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(250, 190, 35, 0.3);
    display: inline-block;
    text-decoration: none;
}

#news.about-section .btn-warning:hover,
#news.about-section .more-news-btn:hover {
    background-color: #000;
    color: #fabe23;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

#news.about-section .btn-warning:active,
#news.about-section .more-news-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile button adjustments */
@media (max-width: 768px) {
    #news.about-section .btn-warning,
    #news.about-section .more-news-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}