.contact-hero {
    background-color: #f5f5f5;
    text-align: center;
    padding: 4rem 2rem;
}

.contact-hero .hero-logo {
    max-width: 300px;
    margin-bottom: 2rem;
}

.contact-hero h1 {
    font-family: 'Playfair Display', serif;
    color: #333;
    font-size: 2.5rem;
    margin: 0;
}

.contact-container {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-section h2,
.office-section h2 {
    font-family: 'Playfair Display', serif;
    color: #333;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #333;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

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

.office-location {
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 4px;
}

.office-location h3 {
    color: #333;
    margin-bottom: 1rem;
}

.office-location p {
    margin: 0.5rem 0;
    color: #666;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-left, .footer-right {
    padding: 2rem;
    background-color: #444;
    border-radius: 4px;
}

.footer-right {
    text-align: left;
}

.footer-right ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.footer-right ul li {
    margin-bottom: 0.5rem;
}

.footer-right ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-right ul li a:hover {
    color: #ddd;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
} 