body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}
.gradient-bg {
    background: linear-gradient(135deg, #1676D2 0%, #2196F3 100%);
}
.gradient-text {
    background: linear-gradient(90deg, #1676D2, #4CAF50);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(22, 118, 210, 0.1), 0 10px 10px -5px rgba(22, 118, 210, 0.04);
}
.wave-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.wave-shape svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}
.wave-shape .shape-fill {
    fill: #FFFFFF;
}
.feature-icon {
    background: linear-gradient(135deg, #1676D2 0%, #2196F3 100%);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}