/* style/index.css */

/* Base styles for the page content, considering dark body background */
.page-index {
    color: #ffffff; /* Light text for dark body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: transparent; /* inherited from body, which is #000000 */
    padding-bottom: 60px; /* General padding for content before footer */
}

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

/* Common Section Styling */
.page-index__section {
    padding: 60px 0;
    text-align: center;
}

.page-index__dark-section {
    background-color: rgba(38, 169, 224, 0.1); /* Slightly transparent primary color for dark sections */
    color: #ffffff;
}}