/* CONTACT PAGE LAYOUT */
.contact-container {
    display: flex;
    gap: 40px;
    padding: 40px;
    max-width: 1100px;
    margin: auto;
    font-family: Arial, sans-serif;
}

/* COLUMNS */
.contact-col {
    flex: 1;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.contact-col h2 {
    margin-bottom: 20px;
    color: #333;
}

/* CONTACT INFO */
.contact-col ul {
    padding-left: 0;
}

.contact-col ul li {
    list-style: none;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-col p {
    margin-top: 15px;
    line-height: 1.6;
}

/* FORM STYLES */
form label {
    font-weight: 600;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin: 6px 0 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

form textarea {
    resize: none;
    height: 100px;
}

form button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
}

form button:hover {
    background-color: #0056b3;
}

/* ERROR MESSAGE */
#errorMsg {
    color: red;
    margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}
