/* Additional styles for front page compatibility */
.wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.wrapper-1740 {
    max-width: 1740px;
    margin: 0 auto;
}

/* Reset some default styles */
* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Microsoft YaHei", Arial, sans-serif;
    /* Fallback background if image doesn't load */
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    background-attachment: fixed;
}

/* Navigation base styles */
.navInner {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: center;
    padding: 15px 0;
}

.NMain {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.NItem {
    margin: 0 10px;
}

/* Ensure content starts below fixed nav */
.mainContainer {
    padding-top: 80px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Default image styling */
img {
    max-width: 100%;
    height: auto;
}

/* Section spacing */
.customModuleRow {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
}

/* Text styling */
.text-white {
    color: white;
}

.text-blue {
    color: #41bee9;
}

/* Button styling */
.ev-base-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    background: #333;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.ev-base-button:hover {
    background: #222;
    color: #41bee9;
    text-shadow: 0 0 8px rgba(65, 190, 234, 0.8);
}