body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', sans-serif;
}

.hero-section {
    background: linear-gradient(135deg, #005b96, #009fc2);
    color: white;
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.hero-section .lead {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 20px auto;
}

.section-content {
    padding: 60px 20px;
    background: white;
}

.feature-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.feature-box i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 15px;
}

.svg-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
}