
.contact-section {
    padding: 40px;
    text-align: left;
    color: #646464;
}

.back-link {
    display: inline-block;
    margin-bottom: 10px;
    text-decoration: none;
    
}

.title {
    font-size: 40px;
    font-family: 'Work Sans', serif;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
}

.image-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}

.contact-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.contact-overlay {
    position: absolute;
    margin: 10px;
    top: 50px;
    left:50px;
    right: 50px;
    bottom: 50px;
    border-radius: 50px;
    color: black;
    background: rgba(255, 255, 255, 0.499);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;  
    text-align: center;
}
.contact-overlay h2{
    font-size: 24px;
    font-family: 'Work Sans', serif;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
}

.contact-overlay p {
    font-size: 20px;
    max-width: 800px;
    line-height: 1.5;
    margin: 5px 0;

}

.open-popup-btn {
    padding: 10px 20px;
    background-color: #2d245b;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.popup-form-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.popup-form-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    position: relative;
    animation: fadeIn 0.3s ease;
}
.popup-form-content h2{
    color: black;
    font-size: 24px;
    font-family: 'Work Sans', serif;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 30px;

}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(-10px);}
    to {opacity: 1; transform: translateY(0);}
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: #999;
    cursor: pointer;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.contact-form label{
    font-size: 16px;
}

.contact-form button {
    background-color: #1927a1;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}
