/* PAGE-SPECIFIC STYLES: contact.css */

.contact-container {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 40px;
    color: var(--text-color);
}

.contact-banner {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 30px;
}

.contact-container h1 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 25px;
}

.contact-container h2 {
    color: var(--secondary-color);
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.contact-info {
    margin-bottom: 30px;
    text-align: center;
}

.contact-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info ul {
    list-style: none;
    padding-left: 0;
}

.contact-info ul li {
    font-size: 17px;
    margin-bottom: 15px;
}

.contact-info ul li i {
    color: var(--info-color);
    margin-right: 12px;
    width: 20px; /* Aligns icons */
    text-align: center;
}

.contact-info a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
}
.contact-info a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-container hr {
    border: 0;
    height: 1px;
    background-color: #e0e0e0;
    margin: 30px 0;
}

#contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ced4da;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--info-color);
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.2);
}

.submit-btn {
    display: block;
    width: 100%;
    background-color: var(--success-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #218838;
}

@media (max-width: 768px) {
    .contact-container {
        padding: 20px;
    }
}