.admission-container {
        margin: 0 auto;
        margin-top: 150px;
        padding: 20px;
}

.admission-heading {
        font-size: 2em;
        color: var(--primary-color);
        margin-bottom: 10px;
        font-weight: bold;
}

.admission-meta {
        font-size: 0.9em;
        color: #666;
        margin-bottom: 20px;
        font-weight: bolder;
}

.admission-description {
        font-size: 1em;
        margin-bottom: 25px;
}

.admission-container .section-heading {
        text-align: left;
}

.admission-list {
        list-style-type: disc;
        margin-left: 20px;
        margin-bottom: 20px;
}

.fee-table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 30px;
}

.fee-table th,
.fee-table td {
        border: 1px solid #ccc;
        padding: 10px;
        text-align: left;
}

.fee-table th {
        background-color: #f0f0f0;
        color: var(--primary-color);
}

.btn-apply {
        background-color: hsla(34, 95%, 52%, 1);
        padding: 12px 28px;
        text-decoration: none;
        font-size: 1rem;
        color: #fff;
        font-weight: 500;
        margin-left: 200px;
        transition: background-color 0.3s ease;
        border: none;
}

.btn-downloads {
        background-color: hsla(34, 95%, 52%, 1);
        padding: 12px 28px;
        text-decoration: none;
        font-size: 1rem;
        color: #fff;
        font-weight: 500;
        margin-left: 630px;
        transition: background-color 0.3s ease;
        border: none;
}


/* Responsive Design */
@media screen and (max-width: 1160px) {
        .btn-apply {
                width: 100%;
                text-align: center;
                margin-top: 0.5rem;
                margin-left: 0;
                border: none;
        }

        .btn-downloads {
                width: 100%;
                text-align: center;
                margin-top: 1rem;
                margin-left: 0;
                border: none;
        }
}

@media screen and (max-width: 1024px) {
        .admission-container {
                padding: 15px;
        }

        .admission-heading {
                font-size: 1.8em;
        }

        .btn-apply {
                width: 100%;
                text-align: center;
                margin-top: 0.5rem;
                margin-left: 0;
                border: none;
        }

        .btn-downloads {
                width: 100%;
                text-align: center;
                margin-top: 1rem;
                margin-left: 0;
                border: none;
        }
}

@media screen and (max-width: 768px) {
        .admission-heading {
                font-size: 1.5em;
        }

        .section-heading {
                font-size: 1.1em;
        }

        .fee-table,
        .fee-table th,
        .fee-table td {
                font-size: 0.9em;
        }

        .btn-apply {
                width: 100%;
                text-align: center;
                margin-top: 0.5rem;
                margin-left: 0;
                border: none;
        }

        .btn-downloads {
                width: 100%;
                text-align: center;
                margin-top: 1rem;
                margin-left: 0;
                border: none;
        }
}

@media screen and (max-width: 480px) {
        .admission-meta {
                font-size: 0.8em;
        }

        .admission-list {
                font-size: 0.9em;
        }
}