.contact-page {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.contact-page h1 {
    text-align: center;
    font-size: 36px;
    color: #001F3F;
    margin-bottom: 20px;
}

.contact-page p {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.contact-form, .contact-info {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form h2, .contact-info h2 {
    font-size: 24px;
    color: #001F3F;
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

.contact-form input, .contact-form textarea {
    width: 95%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.contact-form button {
    background-color: #001F3F;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #0056b3;
}

.contact-info p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.contact-info a {
    color: #001F3F;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.map iframe {
    border-radius: 8px;
}

@media (max-width: 768px) {
    #contactForm input,
    #contactForm textarea {
        width: 95%; /* Adjust the width to fit better on smaller screens */
        margin: 0 auto; /* Center the input fields */
        box-sizing: border-box; /* Ensure padding doesn't affect width */
    }
}