:root {
    --primary-blue: #00a8e8;
    --pink-text: #e83e8c;
    --dark-text: #333;
    --light-grey: #f8f9fa;
}

body {
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.6;
    color: var(--dark-text);
}

.nep-header {
    background-color: var(--primary-blue);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 2.2rem;
    text-align: center;
    margin: 20px auto;
    max-width: 90%;
}

.nep-subheader {
    color: var(--primary-blue);
    font-style: italic;
    text-align: center;
    font-size: 1.7rem;
    margin: 20px 0;
}

.section-header {
    background-color: var(--primary-blue);
    color: white;
    padding: 10px 25px;
    border-radius: 30px 0 30px 0;
    font-weight: bold;
    font-size: 1.6rem;
    display: inline-block;
    margin: 20px 0;
}

.nep-container {
    padding: 0 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.nep-text {
    font-size: 1.25rem;
    text-align: justify;
    margin-bottom: 20px;
}

.pink-text {
    color: var(--pink-text);
    font-weight: bold;
}

.feature-item {
    margin-bottom: 30px;
    opacity: 1;
    transform: translateX(-20px);
}

.feature-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background-color: var(--primary-blue);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.4rem;
    margin-right: 15px;
    float: left;
}

.feature-content {
    font-size: 1.25rem;
    text-align: justify;
    margin-left: 50px;
}

.structure-diagram {
    width: 100%;
    max-width: 300px;
    margin: 20px auto;
    display: block;
}

.highlighted-text {
    font-weight: bold;
}

@media (max-width: 768px) {
    .nep-header {
        font-size: 1.8rem;
        padding: 12px 15px;
    }

    .nep-subheader {
        font-size: 1.4rem;
    }

    .section-header {
        font-size: 1.3rem;
        padding: 8px 15px;
    }

    .nep-container {
        padding: 0 20px;
    }

    .nep-text, .feature-content {
        font-size: 1.1rem;
    }
}