.popup {
    display: none; /* Hidden by default */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 1000;
}

.popup button {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #005EBA;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.popup button:hover {
    background-color: #005EBA;
}

.contact-form-section {
    padding: 50px 0;
    background-color: #fafafafa;
}

.contact-headline {
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.headline-divider {
    width: 80px;
    height: 4px;
    background-color: #005EBA;
    margin: 0 auto 30px;
    border-radius: 2px;
}

.contact-form {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
}

.contact-form .form-control {
    background-color: #fafafafa; 
    border: 1px solid #ddd;
    color: #333; 
   
}

.contact-form .form-control:focus {
    background-color: #e0e0e0; 
    border-color: #005EBA;
    box-shadow: none; 
}

.box img {
    object-fit: cover;
    border-radius: 0 8px 8px 0;
   
}

.btn-primary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: #005EBA;
}

.btn-primary i {
    margin-left: 10px; 
}

.btn-img 
{
    width: 16px;
    height: 16px;
    
}

