body {
    margin: 0;
    padding: 0;
    font-family: podkova;
}

.initiative-heading {
    padding: 2rem;
    text-align: center;
    margin-top: 5rem;
    padding: 0%;
    margin-bottom: 5rem;
}

.avasar-advantage {
    font-size: 5.5rem;
    color: #1e3a8a;
    font-weight: bold;
    font-family: 'Amita', cursive;
    background-color: #ffe746;
    display: block;
    width: 100%;
}


.flowchart {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flowchart-row {
    width: 80%;
    margin: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* Prevent line overflow */
    ;
}

.flowchart-row a {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    text-decoration: none;
}

.flowchart-row a:hover {
    color: #030303;
}

.flowchart-row p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.skill-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    position: relative;
    padding: 1rem 0;
    /* Add padding to ensure line fits */
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
    position: relative;
    z-index: 1;
    /* Ensure items are above the line */
}

.skill-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 0.5rem;
}

.skill-item span {
    font-size: 1.25rem;
    color: #333;
}

@media (max-width: 768px) {
    .avasar-advantage {
        font-size: 3rem;
    }
    
    .flowchart-row {
        width: 100%;
    }

    .skill-list {
        flex-direction: column;
        align-items: center;
    }

    .art-of-expressions .skill-list::before,
    .financial-literacy .skill-list::before {
        display: none;
        /* Hide dotted line on mobile */
    }
}