/* About Us Section Styles */
.about-section {
    padding: 80px 0;
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
}

.about-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.about-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #ff9800;
    /* Orange highlight underlines */
    border-radius: 2px;
}

.about-content {
    display: flex;
    gap: 50px;
    /* Increased gap for better breathing room */
    align-items: center;
    /* Vertically center the video with text */
}

/* Video Wrapper (Left) */
.about-video-wrapper {
    flex: 1;
    position: relative;
    padding-bottom: 28.125%;
    /* Aspect ratio base */
    height: 0;
    min-height: 300px;
    /* Ensure visibility */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    /* Stronger shadow for depth */
}

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

/* Text Content (Right) */
.about-text {
    flex: 1;
    padding: 10px 0;
}

.about-desc {
    font-size: 16px;
    line-height: 1.8;
    /* Better readability */
    color: #555;
    margin-bottom: 25px;
    text-align: left;
    /* Clean left alignment often looks better than justify for web */
}

.about-read-more {
    color: #f7941d;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Brush Script MT', 'Comic Sans MS', cursive;
    font-size: 26px;
    /* Slightly larger */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.about-read-more:hover {
    transform: translateX(8px);
    color: #e65100;
}

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

    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .about-video-wrapper {
        width: 100%;
        padding-bottom: 56.25%;
        /* 16:9 aspect ratio */
        min-height: auto;
    }

    .about-text {
        width: 100%;
        text-align: center;
        /* Center text on mobile */
    }

    .about-desc {
        text-align: center;
        /* Keep text centered or left/justify depending on preference */
    }

    .about-read-more {
        justify-content: center;
    }
}