/* ESEN Main Styles */

/* CSS Variables */
:root {
    --primary-color: #0a192f;
    --secondary-color: #64ffda;
    --text-color: #8892b0;
    --background-color: #0a192f;
    --accent-color: #f06449;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color) !important;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Override Bootstrap's default body background */
html, body {
    background-color: var(--background-color) !important;
}

/* Ensure all Bootstrap components maintain dark theme */
.bg-light, .bg-white {
    background-color: var(--background-color) !important;
}

/* Override Bootstrap's default text colors for dark theme */
.text-dark, .text-body {
    color: var(--text-color) !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
.section {
    padding: 50px 0;
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    font-weight: 700;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}
