/* style/index.css */

/* General Page Styles */
.page-index {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background: #FFFFFF; /* Explicitly set background */
}

/* Section Padding */
.page-index__section-padding {
    padding: 60px 20px;
}

/* Container */
.page-index__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Ensure content doesn't touch edges on larger screens */
    box-sizing: border-box;
}

/* Section Titles and Descriptions */
.page-index__section-title {
    font-size: 36px;
    font-weight: bold;
    color: #017439; /* Primary brand color for titles */
    text-align: center;
    margin-bottom: 20px;
}

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

.page-index__text-white {
    color: #ffffff !important; /* Ensure white text on dark backgrounds */
}

.page-index__center-text {
    text-align: center;
}