
.form-container {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex: 1 1 300px;
    /* opacity: 0; */
    transform: translateY(50px);
    /* transition: opacity 0.6s ease-out, transform 0.6s ease-out; */
}
/* .form-container.visible {
    opacity: 1;
    transform: translateY(0);
} */

form {
    display: flex;
    flex-direction: column;
}

input,
select,
textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

button {
    background-color: #3366cc;
    color:black;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

@media screen and (min-width: 768px) {
    .form-container {
        position: absolute;
        top: 135px;
        right: 35px;
        width: 300px;
    }
/* 
    .content {
        padding-right: 320px;
    } */
}

@media screen and (max-width: 767px) {
    .header {
        text-align: center;
    }

    .form-container {
        margin-top: 20px;
        width: 150%;
    }
}
.left-section {
    flex: 1 1 300px;
    width: fit-content;
}

.benefits {
    
        margin: 20px;
        padding: 20px;
    background: rgba(255, 255, 255, 0.1);
            /* backdrop-filter: blur(10px); */
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        width: fit-content;
    }


.benefits ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Three columns */
    list-style: none;
    padding: 0;
    gap: 10px; /* Space between items */
}

.benefits ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    width: max-content;
}

.benefits ul li::before {
    content: "\f00c"; /* Font Awesome check mark */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: green; /* You can change the color to your preference */
}

@media (max-width: 768px) {
    .benefits ul {
        grid-template-columns: repeat(2, 1fr); /* Two columns for smaller screens */
    }
}

@media (max-width: 480px) {
    .benefits ul {
        grid-template-columns: 1fr; /* One column for mobile devices */
    }
}

.contact,
.process {
    margin-top: 20px;
}
.process ol {
    margin-top: 4%;
    padding-left: 20px;
}
.container_about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    background: linear-gradient(201deg, rgb(179 203 239 / 77%) 38%, rgba(203, 202, 202, 1) 100%);
    min-height: 714px;
}

.header_about {
    background-color: #333;
    color: #fff;
    padding: 40px 20px;
}
.header_about h1{
    font-size: 2rem;
    margin-bottom: 20px;
}
.popup {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    z-index: 1000;
    text-align: center;
}
.popup h3 {
    margin-top: 0;
    color: #4CAF50;
}
.popup-bg {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 999;
}