body {
    font-family: 'Kanit', sans-serif;
}
.hero-section {
    position: relative;
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
#heroCarousel, .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#heroCarousel .carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
}
.hero-overlay {
    background: rgba(18, 35, 46, 0.7); /* #12232E with opacity */
}
.hero-text {
    position: relative;
    z-index: 2;
}
.features-section {
    background: #EEFBFB; /* เงาแห่งแสงสีฟ้า */
}
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}
.feature-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-10px);
}
.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #007CC7, #4DA8DA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.footer a {
    color: #4DA8DA;
    text-decoration: none;
}
.footer a:hover {
    color: #fff;
}
.stats-section .stat-box {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.stats-section .stat-box i {
    color: #007CC7;
    margin-bottom: 1rem;
}