:root {
    --umu-red: #ED1C24;
    --umu-yellow: #FFD200;
    --umu-black: #000000;
    --umu-white: #FFFFFF;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f0f0;
    margin: 0; padding: 20px;
}

.container {
    max-width: 1050px;
    margin: auto;
    background: var(--umu-white);
    border: 1px solid #ccc;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.header {
    text-align: center;
    border-bottom: 4px solid var(--umu-red);
    padding: 10px;
}

.section-header {
    background: var(--umu-black);
    color: var(--umu-yellow);
    padding: 10px 15px;
    margin: 25px 0 10px 0;
    border-left: 6px solid var(--umu-red);
    font-weight: bold;
    text-transform: uppercase;
}

.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
input, select, textarea { width: 100%; padding: 10px; border: 1px solid #ccc; box-sizing: border-box; }
.btn-next { background: var(--umu-red); color: white; padding: 15px 35px; cursor: pointer; border: none; font-weight: bold; }:root {
            --umu-red: #ED1C24;
            --umu-yellow: #FFD200;
            --umu-black: #000000;
            --umu-white: #FFFFFF;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f0f0f0;
            margin: 0; padding: 20px;
        }

        .container {
            max-width: 1050px;
            margin: auto;
            background: var(--umu-white);
            border: 1px solid #ccc;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        /* SLIMMED HEADER FROM SCREENSHOT */
        .header {
            background: var(--umu-white);
            color: var(--umu-black);
            padding: 10px 10px; 
            text-align: center;
            border-bottom: 4px solid var(--umu-red);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .logo-container {
            background: var(--umu-white);
            width: 150px; 
            height: 150px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 5px;
            border: 2px solid var(--umu-yellow);
            padding: 10px;
        }

        .university-logo {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
        }

        .main-heading {
            background: var(--umu-black);
            color: var(--umu-yellow);
            padding: 15px;
            text-align: center;
            margin: 0;
            font-size: 1.5em;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .instructions-box {
            padding: 20px 30px;
            background: #fffdf2;
            font-size: 0.9em;
            line-height: 1.5;
            border-bottom: 1px solid #eee;
            color: #333;
        }

        .tab { display: none; padding: 30px; }
        .tab.active { display: block; }

        .section-header {
            background: var(--umu-black);
            color: var(--umu-yellow);
            padding: 10px 15px;
            margin: 25px 0 10px 0;
            border-left: 6px solid var(--umu-red);
            font-weight: bold;
            text-transform: uppercase;
            font-size: 0.9em;
        }

        label { display: block; font-weight: bold; margin: 12px 0 4px 0; font-size: 0.85em; }
        
        input, select, textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            box-sizing: border-box;
            text-transform: uppercase;
            font-size: 0.95rem;
        }

        .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        .grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 15px; }

        .btn-row { display: flex; justify-content: space-between; margin-top: 30px; }
        button {
            padding: 15px 35px;
            border: none;
            font-weight: bold;
            text-transform: uppercase;
            cursor: pointer;
        }
        .btn-next { background: var(--umu-red); color: white; }
        .btn-prev { background: #666; color: white; }
        .btn-submit { background: #d62929;; color: white; }
    .progress-container {
    width: 100%;
    margin-bottom: 30px;
}

.progressbar {
    counter-reset: step;
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    padding: 0;
}

.progressbar li {
    width: 20%;
    position: relative;
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    color: #7d7d7d;
}

.progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border: 2px solid #7d7d7d;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    background-color: white;
}

.progressbar li:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #7d7d7d;
    top: 15px;
    left: -50%;
    z-index: -1;
}

.progressbar li:first-child:after {
    content: none;
}

/* Active and Completed States */
.progressbar li.active {
    color: #d62929; /* UMU Red */
    font-weight: bold;
}

.progressbar li.active:before {
    border-color: #d62929;
    background-color: #d62929;
    color: white;
}