
.body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f8d7da;
    color: #333;
}

.header {
    margin: 5px;
    background: #dc3545;
    padding: 35px;
    text-align: center;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.pcontainer {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    gap: 20px;
}

.fees-section, .payment-form {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

/* .fees-section { width: 55%; }
.payment-form { width: 40%; } */

.ph2 {
    margin-top: 0;
    color: #dc3545;
    font-size: 22px;
}

.fee-category {
    margin-bottom: 30px;
}

.fee-category h3 {
    margin-bottom: 12px;
    color: #a71d2a;
    font-size: 18px;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.fee-item i {
    color: #dc3545;
    margin-right: 8px;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 15px;
}

.payment-methods {
    margin: 15px 0;
    padding: 10px;
    background: #f8d7da;
    border-left: 5px solid #dc3545;
    border-radius: 6px;
}

.payment-methods i {
    color: #dc3545;
    margin-right: 10px;
}

/* button {
    background: #dc3545;
    color: #fff;
    padding: 14px;
    width: 100%;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    cursor: pointer;
    transition: 0.3s;
} */

button:hover {
    background: #a71d2a;
}

/* RESPONSIVE DESIGN */


@media (max-width: 992px) {
.fees-section { width: 100%; }
.payment-form { width: 100%; }
}


@media (max-width: 768px) {
.header h1 { font-size: 24px; }
.header p { font-size: 14px; }
.pcontainer { padding: 20px; }
h2 { font-size: 20px; }
.fee-category h3 { font-size: 16px; }
}

@media (max-width: 480px) {
.fee-item { flex-direction: column; align-items: flex-start; }
.fee-item span:last-child { margin-top: 5px; font-weight: bold; }
button { font-size: 15px; padding: 12px; }
}
