#application-section {
    background: linear-gradient(to bottom right, #ffffff, #f8f9ff);
    color: #333;
    padding: 50px 30px;
    max-width: 1200px;
    margin: 40px auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    font-family: 'Nunito', Arial, sans-serif;
}

#application-section h2 {
    color: #3E60CE;
    font-size: 2.2rem;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
}

#application-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
    text-align: center;
}

#application-section .two-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

#application-section .primary-fees,
#application-section .high-fees {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #e0e4f6;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#application-section .primary-fees:hover,
#application-section .high-fees:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(62, 96, 206, 0.1);
}

#application-section .primary-fees h1,
#application-section .high-fees h1 {
    font-size: 1.8rem;
    color: #3E60CE;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

#application-section .primary-fees p,
#application-section .high-fees p {
    text-align: center;
    margin: 10px 0;
    font-size: 1.1rem;
}

#application-section .btn {
    display: inline-block;
    padding: 12px 30px;
    background: #3E60CE;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
    border: 2px solid #3E60CE;
}

#application-section .btn:hover {
    background: transparent;
    color: #3E60CE;
    transform: translateY(-2px);
}

.instruction-list {
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(62, 96, 206, 0.08);
    margin: 40px auto;
    max-width: 800px;
    counter-reset: item;
    list-style: none;
}

.instruction-list li {
    position: relative;
    padding: 15px 0 15px 50px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
    counter-increment: item;
    text-align: left;
}

.instruction-list li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #3E60CE;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

#application-section a:not(.btn) {
    color: #3E60CE;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

#application-section a:not(.btn):hover {
    color: #2845a0;
    border-bottom: 2px solid #2845a0;
}

#application-section img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 768px) {
    #application-section {
        padding: 30px 20px;
        margin: 20px;
    }

    #application-section h2 {
        font-size: 1.8rem;
    }

    #application-section .primary-fees,
    #application-section .high-fees {
        padding: 25px;
    }

    #application-section .primary-fees h1,
    #application-section .high-fees h1 {
        font-size: 1.5rem;
    }

    .instruction-list {
        padding: 25px;
        margin: 20px auto;
    }

    .instruction-list li {
        padding-left: 40px;
        font-size: 1rem;
    }
}

#fees-section {
    background-color: #ffffff;
    color: #333;
    padding: 40px;
    margin: 40px auto;
    max-width: 1200px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

#fees-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #3E60CE;
}

#fees-section p {
    margin: 15px 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

#fees-separator {
    border-top: 2px solid #3E60CE;
    margin: 40px 0;
    opacity: 0.2;
}

#fees-section a {
    color: #3E60CE;
    text-decoration: none;
    transition: color 0.3s ease;
}

#fees-section a:hover {
    color: #2845a0;
}

.gall {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.gall > img {
    max-width: 400px;
    margin: 10px;
    image-rendering: optimizeQuality;
}

@media only screen and (max-width: 768px) {
    #fees-section {
        padding: 20px;
        margin: 20px;
    }
    
    .two-section {
        gap: 20px;
    }
}

@media only screen and (max-width: 600px) {
    #application-section {
        margin: 10px;
    }
}