.content-section {
    /* padding-top: 10px; */
    padding-right: 5px;
    height: auto; /* Example height */
    font-size: 12pt;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    scroll-margin-top: 100px; 
    max-width: 100%;
}

.slider-title {
    background-color: #64cbfb; /* Light blue background */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
    border-radius: 5px; /* Rounded corners */
    color: #060606; /* Darker text for contrast */
    font-weight: bold; /* Make the title bold */
    display: inline-block; /* Only take up as much space as needed */
    width: 100%;
    text-align: center;
    white-space: nowrap; /* Prevent the text from wrapping */
    overflow: hidden; /* Hide any overflow text */
    font-size: calc(8px + 1vw); 
}

.container {
    max-width: 1200px;
    margin: 0 auto; /* Center the container */
    padding: 0 15px;
    max-width: 100%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
}

.video {
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
    border-radius: 5px; /* Rounded corners */
    max-width: auto;
    max-height: 270px;
}

.column {
    /* padding-right: 5px;
    padding-left: 5px; */
    text-align: center;
    max-width: 100%;
}

.one-third {
    flex: 0 0 32%;
    max-width: 32%;
}

.two-thirds {
    flex: 0 0 64%;
    max-width: 64%;
    max-width: 100%;
}

.text-center {
    text-align: center;
    max-width: 100%;
}

.content-box-1-3 {
    background-color: #f5f5f5; /* Light gray background */
    padding: 5px; /* Adjust padding as needed */
    margin-bottom: 15px; /* Space between content boxes */
    max-width: 100%;
}

.content-box-1-3 img {
    max-width: 100%;
}

.content-box-2-3 {
    background-color: #f5f5f5; /* Light gray background */
    padding: 40px; /* Adjust padding as needed */
    margin-bottom: 15px; /* Space between content boxes */
    height: 200px;
    max-width: 100%;
}

@media (max-width: 768px) {
    .slider-title {
        background-color: #64cbfb; /* Light blue background */
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
        border-radius: 5px; /* Rounded corners */
        color: #060606; /* Darker text for contrast */
        font-weight: bold; /* Make the title bold */
        display: inline-block;
        max-width: 100%; /* Ensure text doesn't exceed the container */
        text-align: center;
        white-space: nowrap; /* Prevent text from wrapping */
        overflow: hidden;
        font-size: 3.5vw; /* Responsive font size based on viewport width */
    }
}

@media (max-width: 768px) {
    .two-thirds {
        flex: 0 0 100%;
        max-width: 100%;
        
    }
}

@media (max-width: 768px) {
    .one-third {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .video {
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
        border-radius: 5px; /* Rounded corners */
        max-width: 100%;
    }
}

.button-mob {
    display: none;
    border: none;
    padding: 0.5rem;
    margin: 0;
    text-decoration: none;
    background: #0069ed;
    color: #fff;
    font-family: sans-serif;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    transition: background 250ms ease-in-out, transform 150ms ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    max-width: 100%;
}

/* Show the button only on screens that are 768px wide or less */
@media (max-width: 768px) {
    .button-mob {
        display: inline-block;
        max-width: 100%;
    }
}

.video {
    max-width: 100%;
    height: auto;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
    border-radius: 5px; /* Rounded corners */
    z-index: -1000;
}

html {
    scroll-behavior: smooth;
}

.row {
    display: flex;
    justify-content: space-between; /* Distribute space between columns */
    flex-wrap: wrap; /* Ensure columns wrap on smaller screens */
}

.no-bullet {
    list-style-type: none; /* Removes the bullet point */
    padding-left: 0; /* Optional: removes any left padding */
}

.green-check {
    list-style-type: none; /* Removes the default bullet point */
    position: relative; /* Allows positioning of the pseudo-element */
    padding-left: 15px; /* Adds space for the check mark */
    line-height: 20px;
    font-size: 15px;
}

.green-check::before {
    content: "\2713"; /* Unicode character for check mark */
    color: green; /* Green color for the check mark */
    font-weight: bold; /* Optional: makes the check mark bold */
    position: absolute; /* Positions the check mark relative to the list item */
    left: 0; /* Aligns the check mark to the left */
    top: 0; /* Aligns the check mark to the top */
}

.left {
    float: left;
}

.right {
    float: right;
}