    #corpPres_9f8b2d,
    .corpPres_section_9f8b2d {
    padding: 60px 0;
    background: #f8f9fa; /* subtle gradient for premium feel */
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    }

    .corpPres_container_9f8b2d {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    }

    .corpPres_content_9f8b2d {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    }

    .corpPres_text_9f8b2d {
    flex: 1;
    min-width: 320px;
    animation: slideInLeft 1s ease forwards;
    opacity: 0;
    }

    .corpPres_text_9f8b2d h2 {
    font-size: 35px;
    color: #0f4414;
    margin-bottom: 35px;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    
    }

    /* Underline below heading */
    .corpPres_text_9f8b2d h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px; /* distance from heading */
    width: 190px;   /* length of underline */
    height: 4px;   /* thickness of underline */
    background-color: #0f4414; /* same as heading color */
    border-radius: 2px; /* rounded edges */
    transition: width 0.3s ease;
    }




    .corpPres_text_9f8b2d p {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
    }

    .corpPres_video_9f8b2d {
    flex: 1;
    min-width: 320px;
    animation: slideInRight 1s ease forwards;
    opacity: 0;
    }

    .corpPres_videoWrapper_9f8b2d {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .corpPres_videoWrapper_9f8b2d video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* keeps aspect ratio and fills container */
    }


    .corpPres_videoWrapper_9f8b2d:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    }

    /* Animation Keyframes */
    @keyframes slideInLeft {
    0% { transform: translateX(-50px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
    }

    @keyframes slideInRight {
    0% { transform: translateX(50px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
    }

    /* Responsive */
    @media (max-width: 768px) {
    .corpPres_content_9f8b2d {
        flex-direction: column;
        gap: 40px;
    }
    .corpPres_text_9f8b2d, 
    .corpPres_video_9f8b2d {
        text-align: center;
    }
    .corpPres_text_9f8b2d h2 {
        font-size: 32px;
    }
    .corpPres_text_9f8b2d p {
        font-size: 16px;
    }
    }
