/* style/contact.css */

/* Base styles for the contact page */
.page-contact {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #FFF1E8; /* Custom text color for dark background */
    background-color: #140C0C; /* Custom background color */
}

.page-contact__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
}

.page-contact__section-title {
    font-size: 36px;
    font-weight: 700;
    color: #F3C54D; /* Gold color for titles */
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

.page-contact__section-description {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #FFF1E8;
}

/* Hero Section */
.page-contact__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background: linear-gradient(180deg, #140C0C 0%, #2A1212 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}