.main-text {
    display: block;
}

.logo-container {
    width: 300px;
}

.icon-prop {
    color: #ffffff;
    font-size: 25px;
}

.download-button {
    line-height: 25px;
}

/* Style the container div */
.video-container {
    width: 600px; /* Full width of the parent container */
    height: 596px; /* Full height of the viewport */
    overflow: hidden; /* Ensures no overflow from the video */
    position: relative; /* For positioning the video properly */
}

/* Style the video */
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the div while maintaining aspect ratio */
}

.issues {
    color: #ffffff;
    font-size: 25px;
}

.course-highlights {
    width: 500px;
}

.grid-container-01 {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    grid-template-rows: 1fr 1fr; /* Two equal rows */
    gap: 50px; /* Optional: space between grid items */
    margin-bottom: 50px;
}

.grid-item-01 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    border: 1px solid var(--accent-color);
    padding: 20px;
    border-radius: 20px;
    line-height: 34px;
    background-color: #fff;
}

.section-margin-bottom {
    margin-bottom: 100px;
}

#blueprint-hero-h1,
#course-hero-h1 {
    font-size: 55px
}

.larger123 {
    font-size: 18px;
    margin-bottom: 20px !important;
}

#blueprimt-img-2 {
        aspect-ratio: auto;
}

/* Small screens (phones, up to 600px) */
@media (max-width: 520px) {
    .section-title h3 {
        background-image: none;
        padding-left: 0px;
    }

    #home-hero-h1,
    #course-hero-h1,
    #blueprint-hero-h1 {
        font-size: 33px;
        margin-bottom: 20px;
    }

    .grid-container-01 {
        grid-template-columns: 1fr;
    }

    .issues {
        font-size: 20px;
    }
}

/* Medium screens (tablets, up to 1024px) */
@media (min-width: 1569px) {
    header.main-header {
        padding: 0px 50px;
    }
}