body {
    font-family: 'Afacad', sans-serif;
    margin: 0;
    height: auto;
}
.contact-container {
    min-height: 85vh; 
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0rem 1rem;
    box-sizing: border-box;
    overflow: hidden;
}
.contact-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.18); 
    backdrop-filter: blur(8px);
    z-index: 0;
}
.contact-container > * {
    position: relative;
    z-index: 1;
}
.contact-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0rem;
    padding: 0rem 1.25rem 0rem 0rem;
    max-width: 1300px;
    margin: auto;
}  
.contact-right {
    width: 90%;
    height: max-content;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
} 
.contact-right h2 {
    margin: 0;
    color: #0f4386;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.contact-right form {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}  
.contact-right input {
    position: relative;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}  
.contact-right button {
    background-color: #0f4386;
    color: white;
    border: none;
    padding: 0.9rem;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}  
.contact-right .form-checkbox label {
    display: inline;
}
#contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
    resize: none;
}
 .contact-left {
    width: 100%;
 }
 .contact-left img{
    width: 85%;
    height: 85%;
}
@media (max-width: 768px) {
    .contact-wrapper {
        gap: 0.5rem;
        padding: 1.5rem;
        flex-direction: column;
    }
    .contact-left {
        width: 100%;
        padding: 0.5rem 0.25rem;
        margin-left: 0;
        text-align-last: center;
    }
   
    .contact-right {
        width: 100%;
        padding: 1.75rem 1rem;
        margin-left: 0;
    }
    .form-checkbox {
        margin-bottom: .8rem;
    }
    .form-checkbox label {
        display: inline;
    }
}