.about-section {
    position: relative;
    margin: 150px 0 0;
    padding: 80px 0;
    background: #EFEFEF;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url('../assets/shapes/t-shape.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    z-index: -1;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url('../assets/shapes/b-shape.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    z-index: -1;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
}

.about-content-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white-color);
    padding: 20px;
    border-radius: 40px;
    gap: 24px;
}

.video-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    flex: 1;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.video-placeholder {
    width: 100%;
    height: 400px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.play-pause-btn {
    width: 40px;
    height: 40px;
    background: var(--white-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-pause-btn:hover {
    background: var(--primary-color);
}

.play-pause-btn img {
    width: 20px;
    height: 20px;
}

.volume-btn {
    width: 35px;
    height: 35px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.volume-btn img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
}

.time-display {
    color: var(--white-color);
    font-size: 14px;
    margin-left: auto;
}

.video-settings {
    display: flex;
    gap: 10px;
}

.settings-btn {
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.settings-btn img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
}

.about-text {
    width: 100%;
    height: auto;
    padding: 20px;
    flex: 1;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.about-text::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../assets/pattern/p-logo.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40%;
    opacity: 0.03;
    z-index: -1;
}


.about-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--tertiary-color);
    margin-bottom: 20px;
}

.about-description {
    font-size: 18px;
    line-height: 2;
    color: var(--tertiary-color);
    text-align: justify;
}

.about-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.about-buttons .btn {
    min-width: 200px;
}

@media (max-width: 1200px) {

    .about-title {
        font-size: 32px;

    }

    .about-description {
        line-height: 1.8;
    }

    .video-container {
        flex: 1;
    }
}

@media (max-width: 992px) {
    .about-content-items {
        flex-direction: column;
    }

    .about-title {
        font-size: 28px;
    }

    .about-description {
        line-height: 1.9;
    }

    .video-container {
        width: 100%;
        height: auto;
    }

    .video-placeholder {
        height: auto;
    }

    .about-text::before {
        background-size: 30%;
    }

    .about-content {
        gap: 40px;
    }

}

@media (max-width: 768px) {

    .about-section {
        margin: 100px 0 0;
    }

    .about-title {
        font-size: 28px;
    }

    .about-section {
        padding: 50px 0;
    }

    .about-text {
        padding: 10px;
    }

    .about-content .hero-buttons {
        transform: scale(1.2);
    }

}

@media (max-width: 576px) {
    .about-title {
        font-size: 24px;
    }

    .about-description {
        font-size: 16px;
    }

    .about-content-items {
        gap: 14px;
    }

    .about-content {
        gap: 30px;
    }

    .about-content .hero-buttons {
        transform: scale(1.1);
    }
}

@media (max-width: 480px) {
    .about-section {
        margin: 100px 0 0;
    }

    .about-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .about-description {
        line-height: 1.8;
    }

}

@media (max-width: 390px) {
    .about-title {
        font-size: 20px;
    }

    .about-content-items {
        padding: 12px;
    }

    .about-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-section {
        padding: 10px 0;
    }

    .about-content .hero-buttons {
        transform: scale(1);
    }
}