.contact-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 40px;
    margin-bottom: 80px !important;
    max-width: 1200px;
    margin: auto;
    border-radius: 30px;
    flex-wrap: wrap;
    background: rgb(255, 255, 255);
}

.contact-info {
    width: 500px;
    border-radius: 10px;
}

.contact-info h2 {
    font-size: 24px;
    color: #000c67;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 25px;
}

.info-item i {
    font-size: 24px;
    color: #001eff;
}

.info-item span {
    font-size: 16px;
    color: #333;
}

.contact-form {
    padding: 70px 20px 0;
    border-radius: 12px;
    width: 100%;
    max-width: 580px;
}

.contact-form h3 {
    color: #000c67;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

.contact-form h2 {
    font-size: 35px;
    color: #000c67;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-bottom: 2px solid #ccc;
    font-size: 16px;
    outline: none;
    background: transparent;
    transition: 0.3s ease-in-out;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom: 2px solid rgb(76, 0, 255);
}

.form-group {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.form-group input {
    width: 45%;
}

.contact-form textarea {
    height: 100px;
    resize: none;
    margin-bottom: 20px;
}

.submit-btn {
    background: #152ddf;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    padding: 12px 20px;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #000c67;
}

.contact-image {
    background-color: #152ddf;
    border-radius: 30px;
    padding: 10px 0 0;
    text-align: center;
}

.contact-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
}

@media (max-width: 1024px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px;
    }

    .contact-info {
        width: 100%;
        max-width: 500px;
        text-align: center;
    }

    .info-item {
        justify-content: center;
    }

    .contact-form {
        padding: 40px 20px 0;
        max-width: 100%;
    }

    .form-group {
        flex-direction: column;
        gap: 20px;
    }

    .form-group input {
        width: 100%;
    }

    .contact-image img {
        max-width: 300px;
    }
}

.contact-section2 {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background-color: #000c67;
    padding: 50px 10%;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-infos {
    flex: 1;
    background: #ffffff;
    color: rgb(0, 0, 0);
    padding: 40px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 450px;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #007bff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info p {
    font-size: 1rem;
    line-height: 1.6;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item i {
    font-size: 24px;
    color: #007bff;
}

.map-container {
    flex: 1.5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 1024px) {
    .contact-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-info {
        max-width: 100%;
    }

    .map-container {
        width: 100%;
        height: 350px;
    }

    .contact-item {
        justify-content: center;
    }
}