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

body {
    font-family: 'Cinzel Decorative', 'Poppins', serif;
    color: #1A233B;
    line-height: 1.6;
    background-color: #F5F5F5;
}

.contact-header {
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-color: #1A233B;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: white;
}

.contact-breadcrumb {
    font-size: 1rem;
}

.contact-breadcrumb a {
    color: #DB9E30;
    text-decoration: none;
}

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

.contact-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-left-col, .contact-right-col {
    width: 48%;
}

.contact-heading {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1A233B;
}

.contact-left-col p {
    margin-bottom: 20px;
    font-family: Poppins, serif;
    color: #1A233B;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #C5C5C8;
    background: #F5F5F5;
    font-family: Poppins, serif;
    color: #1A233B;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-submit-btn {
    background: #DB9E30;
    color: white;
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    font-family: 'Cinzel Decorative', Poppins, serif;
    font-weight: bold;
    transition: background 0.3s;
}

.contact-submit-btn:hover {
    background: #C48A1A;
}

.contact-info {
    margin-bottom: 30px;
    font-family: 'Poppins', serif;
}

.contact-info h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-family: 'Cinzel Decorative', Poppins, serif;
    color: #1A233B;
}

.contact-info p {
    margin-bottom: 5px;
    color: #1A233B;
}

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

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

.contact-map-container {
    width: 100%;
    height: 300px;
    margin-top: 20px;
    border: 1px solid #C5C5C8;
}

.contact-map-btn {
    display: inline-block;
    background: #F5F5F5;
    padding: 8px 15px;
    margin-bottom: 10px;
    text-decoration: none;
    color: #1A233B;
    font-size: 0.9rem;
    border: 1px solid #C5C5C8;
    font-family: 'Poppins', serif;
}

.contact-map-btn:hover {
    background: #E0E0E0;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    .contact-left-col, .contact-right-col {
        width: 100%;
    }
    .contact-right-col {
        margin-top: 40px;
    }
    .contact-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .contact-header h1 {
        font-size: 2rem;
    }
    .contact-container {
        margin: 30px auto;
    }
    .contact-heading {
        font-size: 1.5rem;
    }
}