


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}

/* MAIN STRUCTURE */
main {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Heading top, about bottom */
    min-height: 80vh; /* Adjust as needed */
    margin-top: 0px;
    background-color: rgb(17, 17, 17);
}

/* HEADING */
.heading {
    width: 90%;
    margin: 40px auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 150px;
}

.heading h1 {
    font-size: 50px;
    color: white;
    margin-bottom: 25px;
    position: relative;
}

.heading h1::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    display: block;
    margin: 0 auto;
    background-color: gold;
    margin-top: 10px;
}

.heading p {
    font-size: 18px;
    color: white;
    margin-bottom: 35px;
}

/* CONTAINER */
.container {
    width: 90%;
    margin: 0 auto;
    background: none;
   
}

/* ABOUT SECTION */
.about {
    display: flex;
    flex-wrap: wrap; /* Allows responsive stacking */
    justify-content: center; /* Center on smaller screens */
    gap: 40px; /* Space between video and content */
    width: 100%;
    align-items: flex-start;
}

/* VIDEO */
.about-video {
    flex: 1 1 400px; /* Grow/shrink with min width */
    overflow: hidden;
}

.about-video video {
    width: 100%;
    height: auto;
    display: block;
}

/* ABOUT CONTENT */
.about-content {
    margin-top: 30px;
    flex: 1 1 400px;
    background: none;
}

.about-content h2 {
    font-size: 23px;
    margin-bottom: 15px;
    color: white;
}

.about-content p {
    font-size: 18px;
    line-height: 1.5;
    color: white;
}

/* BUTTON */
.about-content .need-video {
    display: inline-block;
    padding: 10px 20px;
    color: rgb(24, 24, 24);
    font-size: 19px;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 15px;
    background-color: rgb(119, 119, 119);
}

body {
    background-color: #1d1d1d; /* your dark shade */
}
main {
    background: none;
}
