/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

nav ul li a.active,
nav ul li a:hover {
    color: #8B5A2B;
    border-bottom-color: #8B5A2B;
}

/* Contact Page Styles */
.contact-hero {
    background: #2B5A8B;
    color: white;
    text-align: center;
    padding: 60px 20px;
}
.contact-hero h1 {
    font-size: 2.8rem;
    margin: 0;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 5%;
}

.contact-form,
.contact-info {
    flex: 1 1 400px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.contact-form h2,
.contact-info h2 {
    margin-bottom: 20px;
    color: #2B5A8B;
}

.form-group {
    margin-bottom: 20px;
}
label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}
input,
textarea {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
}
textarea {
    min-height: 120px;
    resize: vertical;
}
.btn {
    background: #2B5A8B;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}
.btn:hover {
    background: #1E4161;
}

.contact-info p {
    margin: 10px 0;
}
.contact-info h3 {
    margin-top: 30px;
}
.social-links a {
    display: inline-block;
    margin-right: 15px;
}
.social-links img {
    width: 30px;
    height: 30px;
}

/* Footer */
footer {
    background: #2B5A8B;
    color: white;
    text-align: center;
    padding: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        padding: 40px 5%;
    }
}
