/* css/contact.css */

.contact-page {
    padding: 40px 0;
}

.contact-page h1 {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.contact-page .intro {
    text-align: center;
    color: #6c757d;
    margin-bottom: 30px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.contact-details section {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.contact-details h2 {
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
}

.contact-details .info p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.contact-details .info strong {
    font-weight: bold;
    color: #333;
}

.contact-details .form-section .form-group {
    margin-bottom: 20px;
}

.contact-details .form-section label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}

.contact-details .form-section input,
.contact-details .form-section textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
}

.contact-details .form-section textarea {
    resize: vertical;
}

.contact-details .form-section .submit-button {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-details .form-section .submit-button:hover {
    background-color: #1e7e34;
}