.our-story {
    background-color: #EEF1F5;
    padding: 40px 20px;
}
.story-content {
    text-align: center;
    margin-bottom: 40px;
}
.story-content h1, .story-content h2,
.story-content p {
    text-align: left; /* Căn lề trái */
    color: #000000;
}

.our-story p {
    max-width: 1010px;
}

.our-story .section-title {
    color: var(--primary-color);
  }

.story-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.story-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}
.story-item {
    flex: 1 1;
    overflow: hidden;
}
.story-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    transition: all .3s;
}


/* Khi hover */
.story-image:hover {
    opacity: 0.8;
}

.story-description {
    font-size: 18px;
    padding-top: 24px;
    color: #333;
    line-height: 1.6;
}
.story-description b {
    font-size: 18px;
    color: #1A1A1A;
    margin-bottom: 8px;
}

a {
    color: #000;
    text-decoration: none;
    background-color: transparent;
}

/* Video Popup Styles */
.video-popup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    overflow-y: auto;
}

.video-popup-content {
    position: relative;
    max-width: 1440px;
    width: 80%;
    border-radius: 10px;
    overflow: hidden; 
    display: flex;
    flex-direction: column;
}

.video-popup-header {
    display: flex;
    justify-content: right;
    align-items: center;
    padding: 6px 12px;
    background-color: var(--header-bg, #000);
    color: var(--header-color, #FFF);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.video-popup-header span {
    height: 24px;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0;
}

.video-popup-close {
    font-size: 24px;
    cursor: pointer;
    color: var(--header-color, #FFF);
    transition: color 0.3s ease;
}

.video-popup-close:hover {
    color: var(--red, #FF0000);
}

.video-popup-body {
    position: relative;
    padding-top: 56.25%; 
}

.video-popup-body iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


/* Responsive Styles */
@media (max-width: 991px) {
    .story-row {
        flex-direction: column;
    }
    .story-item {
        width: 100%;
    }
    .video-popup-content {
        width: 90%;
    }
    .story-description {
        font-size: 16px;
    }
    .our-story p {
        max-width: 656px;
    }
}


/* Responsive Mobile (min-width: 360px) */
@media (max-width: 360px) {
    .story-row {
        flex-direction: column;
    }
    .story-item {
        width: 100%;
    }
    .video-popup-content {
        width: 90%;
    }
    .story-description {
        font-size: 16px;
    }
    .our-story p {
        max-width: 328px;
    }
  }

