body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    scroll-behavior: smooth;
}

.tabs-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-pills .nav-link {
    border-radius: 8px;
    font-weight: 600;
    margin: 5px;
    cursor: pointer;
}

.nav-pills .nav-link.active {
    background-color: black;
    color: white;
}

/* .section-container {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
} */

.section-title {
    font-weight: bold;
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}

.feature-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
}

.feature-item {
    text-align: center;
    width: 30%;
    padding: 15px;
}

.feature-item img {
    width: 50px;
    margin-bottom: 10px;
}


