/* style/contact.css */

/* Custom CSS Variables for colors */
:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient-start: #2AD16F;
    --button-gradient-end: #13994A;
    --card-bg-color: #11271B;
    --background-color: #08160F;
    --text-main-color: #F2FFF6;
    --text-secondary-color: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;
}

/* Base styles for the contact page */
.page-contact {
    color: var(--text-main-color);
    background-color: var(--background-color);
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 60px; /* Ensure space above footer */
}

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

/* Section Titles and Descriptions */
.page-contact__section-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-main-color);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__section-description {
    font-size: 1.1rem;
    color: var(--text-secondary-color);
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Text links */
.page-contact__text-link {
    color: var(--glow-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-contact__text-link:hover {
    color: var(--gold-color);
    text-decoration: underline;
}