.about-section {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-section:last-child {
    padding-top: 0;
}

/* Header Area */
.about-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.header-content {
    flex: 1;
    max-width: 700px;
}

.about-label {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    /* Teal color */
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.about-label::before {
    content: '';
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.about-main-title {
    font-size: 48px;
    line-height: 1.2;
    color: #1a3353;
    /* Dark blue color */
    font-weight: 500;
    margin: 0;
}

.about-main-title .highlight {
    color: #f5811d;
    font-weight: 600;
}

.about-badge {
    width: 180px;
    opacity: 0.9;
}

.about-badge img {
    width: 100%;
    height: auto;
}

/* Body Area */
.about-body {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-video-column {
    flex: 1;
    max-width: 300px;
}

.about-content-column {
    flex: 1;
    padding-top: 40px;
}

/* Video Column Refined */
.video-thumbnail-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-thumbnail-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 60px;
    background: var(--primary-color);
    /* Teal background */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    border: none;
    color: #fff;
    font-size: 24px;
}

.play-button:hover {
    background: #3a8e96;
    transform: translate(-50%, -50%) scale(1.05);
}

/* Content Column Refined */
.about-description {
    font-size: 22px;
    line-height: 1.8;
    font-weight: bold;
    margin-bottom: 40px;
}

.know-more-btn {
    display: inline-block;
    padding: 12px 40px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.know-more-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
    .about-section {
        padding: 60px 0;
    }

    .about-header {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .about-label {
        justify-content: center;
    }

    .about-label::before {
        display: none;
    }

    .about-badge {
        order: -1;
        width: 100px;
        margin: 0 auto;
    }

    .about-body {
        flex-direction: column;
        gap: 40px;
    }

    .about-content-column {
        padding-top: 0;
        text-align: center;
    }

    .about-main-title {
        font-size: 32px;
    }

    .about-description {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .about-main-title {
        font-size: 28px;
    }

    .play-button {
        width: 60px;
        height: 45px;
        font-size: 18px;
    }
}

/* Multiple Logos Grid */
.section-logos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
    justify-content: center;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 150px;
}

.logo-image {
    width: 120px;
    height: 120px;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: translateY(-5px);
}

.logo-image img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
}

.logo-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a3353;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .section-logos-grid {
        gap: 20px;
        justify-content: center;
    }

    .logo-image {
        width: 100px;
        height: 100px;
    }

    .logo-label {
        font-size: 13px;
    }
}