#section-contact-v1 {
    background-color: #ffffff;
    padding: 50px 0;
    font-family: 'Arial', sans-serif;
}

.container-contact {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.area-form-contact {
    display: grid;
    grid-template-columns: 2fr 1fr; 
    gap: 25px;
    margin-bottom: 30px;
}

.area-form-contact > div, .cards-area > div {
    background-color: var(--colorFour); 
    padding: 30px;
    border-radius:var(--borderRadiusSize);
    color: #ffffff;
}

.area-form-contact > div:last-child {
    background-color: #6396b3be; 
    color: white;
    height: 60%;
}


#registerForm input, #registerForm textarea, .area-form-contact input[type="text"] {
    width: 100%;
    border: none;
    border-radius: var(--borderRadiusSize);
    padding: 12px 20px;
    margin-bottom: 15px;
    background-color: #ffffff;
}

.btn-send, .area-form-contact a {
    background-color: var(--rslour) !important; 
    color: white !important;
    border: none;
    border-radius: var(--borderRadiusSize);
    padding: 10px 30px;
    text-decoration: none;
    display: inline-block;
}

.cards-area {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    align-items: stretch;
}

.cards-area > a {
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    align-items: center;   
    text-align: center;
    padding: 30px 20px; 
    border-radius: var(--borderRadiusSize);
}

.cards-area > a p {
    color: var(--colorTwo);
    transition: color 0.5s ease;
}

.icon-card-contact {
    font-size: 2.1rem;
    color: white;
    margin-bottom: 10px;
    transition: color 0.5s ease;
}

.bg-card-contact {
    color: white;
    border-radius: 20px;
    padding: 25px;
}



.bg-card-contact2 {
    color: white;
    border-radius: 20px;
    padding: 25px;
}

.bg-card-contact3 {
    color: white;
    border-radius: 20px;
    padding: 25px;
}

.bg-card-contact h4, 
.bg-card-contact2 h4, 
.bg-card-contact3 h4 {
    color: white !important; 
    font-size: 1.3rem;
    transition: color 0.5s ease;
    margin-top: 15px;
    word-break: break-word;
}




.cards-area > a:hover i, .cards-area > a:hover h4, .cards-area > a:hover p {
    color: var(--colorSix) !important;
}

.text-information h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--colorSix);
}

.text-information p {
    font-size: 1.1rem;
    color: var(--colorTwo);
    margin-bottom: 20px;
} 

.text-information i {
    font-size: 2rem;
    color: var(--colorTwo);
    margin-top: 15px;
    background-color:var(--rslour);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.number-contact {
    text-decoration: none;
    color: var(--colorSix);
    font-size: 1.2rem;
}

.maps {
    width: 100%;
    height: 350px;
    border-radius: var(--borderRadiusSize);
    overflow: hidden;
    background-color: #eee;
}

@media (max-width: 992px) {
    .cards-area {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .area-form-contact, .cards-area {
        grid-template-columns: 1fr;
    }
    .container-contact {
        max-width: 90%;
    }
    .area-form-contact > div:last-child {
        height: 100%;
    }

    .cards-area > a {
        max-width: 100%; 
    }
}

@media (max-width: 455px) {
    .container-contact {
    padding: 7px;
    margin: 0;
    max-width: 100%;
    }
    .area-form-contact > div, .cards-area > div {
    padding: 18px 12px;
    }
}