@charset "UTF-8";
/* CSS Document */
/* Contact Page Styling */
.contact-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px 60px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
}

/* Header Image */
.contact-image {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
}

.contact-image img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.contact-container h1 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 10px;
    color: #111;
}

.subheading {
    text-align: center;
    font-size: 1.2em;
    color: #555;
    margin-bottom: 40px;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    background: #fdfdfd;
    transition: border 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #5378F8;
    outline: none;
}

.contact-form textarea {
    height: 130px;
    resize: none;
}

.contact-form button {
    background: #000;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #5378F8;
}

/* Info & SEO Section */
.section {
    background: #f9f9f9;
    padding: 30px 40px;
    margin-bottom: 40px;
    border-radius: 8px;
}

.section h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #222;
}

.section p {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Map & Info */
.map-container {
    text-align: center;
}

.map-container h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #222;
}

.map-container p {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1em;
    color: #444;
    margin: 6px 0;
}

.contact-info a {
    color: #5378F8;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    border: none;
    margin-top: 20px;
}

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

    .section {
        padding: 25px;
    }
}

