/* General Container Style */
.container-vdo {
    display: flex;
    /* flex-wrap: wrap; */
    background-image: url('../img/div3/indBG.webp');
    /* Set the background image path */
    background-size: cover;
    padding: 50px;
    justify-content: space-between;
}

/* Content Section */
.content-vdo {
    margin-left: 15%;
    width: 60%;
    color: #ffffff;
    padding: 20px;
    text-align: left;
}

.content-vdo h1 {
    font-size: 2.25rem;
    font-weight: bold;
    color: black;
}

.content-vdo p {
    font-size: 1rem;
    margin: 10px 0;
    line-height: 1.6;
    color: black;
}

/* Progress Bars */
.progress-bars-vdo {
    margin-top: 20px;
}

.bar-vdo {
    height: 10px;
    background-color: #ddd;
    margin-bottom: 5px;
    position: relative;
}

.expert-guidance-vdo {
    width: 70%;
    background-color: #4caf50;
}

.tailored-strategies-vdo {
    width: 50%;
    background-color: #ff9800;
}

.ongoing-support-vdo {
    width: 30%;
    background-color: #2196f3;
}

/* Form Section */
.form-container-vdo {
    width: 30%;
    background-color: rgb(255, 255, 255);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.form-container-vdo h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
}

input,
select,
textarea {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #c0baba;
    border-radius: 5px;
    font-size: 1rem;
}

textarea {
    resize: vertical;
}

button {
    padding: 10px;
    background-color: #000;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #303f9f;
}

/* Responsive Design */

/* Large Screens (Desktops) */
@media (max-width: 1200px) {
    .content-vdo {
        width: 55%;
    }

    .form-container-vdo {
        width: 35%;
    }
}

/* Medium Screens (Tablets) */
@media (max-width: 768px) {
    .container-vdo {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .content-vdo {
        width: 100%;
        margin-left: 0;
        text-align: center;
    }

    .content-vdo h1 {
        font-size: 1.8rem;
    }

    .content-vdo p {
        font-size: 0.95rem;
    }

    .form-container-vdo {
        width: 90%;
        margin-top: 20px;
    }
}

/* Small Screens (Mobiles) */
@media (max-width: 480px) {
    .content-vdo h1 {
        font-size: 1.5rem;
    }

    .content-vdo p {
        font-size: 0.9rem;
    }

    .form-container-vdo {
        width: 100%;
        padding: 15px;
    }

    input,
    select,
    textarea {
        font-size: 0.9rem;
    }

    button {
        font-size: 0.9rem;
    }
}
