body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #212529;
    background: linear-gradient(
        to right,
        #e8f2fe 0%,
        #ffffff 15%,
        #e8f2fe 80%,
        #e8f2fe 100%
    );
}

h4 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 35px;
}

p {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}

p.text-muted {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.navbar-brand h4 {
    font-family: sans-serif;
    margin: 0;
    font-weight: 700;
    font-size: 34px;
    line-height: 100%;
    letter-spacing: -0.03em;
    color: #0241ca;
}

.navbar-brand span {
    font-family: Poppins;
    display: block;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.6em;
    text-transform: uppercase;
    color: #0241ca;
}

.hero {
    padding-top: 100px;
}

.section-two-box {
    background: linear-gradient(to bottom, #edf1f7 0%, #fdfefe 100%);
    border-radius: 10px;
    border: #dce0e6 1px solid;
}
.section-three-box {
    background: linear-gradient(to bottom, #e9feeb 0%, #fdfefe 100%);
    border-radius: 10px;
    border: #dce0e6 1px solid;
}

.achievement-area {
    border-radius: 10px;
    background: linear-gradient(to right, #efecfc 0%, #faeffc 100%);
}

.feature-box {
    flex: 0 0 20%;
    max-width: 20%;
}

.accordion-item {
    border-radius: 20px !important;
}

/* remove default background from accordion button */
.accordion-button {
    box-shadow: none;
}

/* custom toggle icon (+ / -) */
.accordion-button::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    background-image: none !important;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-button:not(.collapsed)::after {
    content: "-";
}

/* Responsive: stack 2 per row on small screens */
@media (max-width: 768px) {
    .feature-box {
        flex: 0 0 50%;
        max-width: 50%;
    }

    section {
        padding-top: 40px !important;
    }
}

/* Responsive: full width on extra small screens */
@media (max-width: 576px) {
    .feature-box {
        flex: 0 0 100%;
        max-width: 100%;
    }

    section {
        padding-top: 50px !important;
    }
}
