.hero-section {
    background: linear-gradient(135deg, #0B1C2D 0%, #1e3a8a 100%);
    color: white;
    padding: 100px 0 60px;
}

.section-padding {
    padding: 50px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #0B1C2D;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF7A18;
    font-weight: bold;
    font-size: 1.2rem;
}

.bg-light-custom {
    background: #F8FAFC;
}

.text-primary-custom {
    color: #0B1C2D;
}

.text-accent-custom {
    color: #FF7A18;
}

.bg-primary-custom {
    background: #0B1C2D;
}