* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* ===== BASE STYLES ===== */

:root {
    --primary-red: #901f1f;
    --secondary-blue: #1fbdec;
    --accent-purple: #8256b8e0;
    --accent-green: #24be76;
    --dark: #000000;
    --light: #f4f4f4;
    --table-blue: #5bc0de;
    --table-red: #a50404e3;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: sans-serif, 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background-color: #f4f4f4;
    color: #000;
    line-height: 1.6;
}


/* ===== HEADER STYLES ===== */

.header {
    background-color: #901f1f;
    color: #fff;
    padding: 25px 10px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1fbdec, #901f1f, #1fbdec);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.header-logo img {
    height: 90px;
    width: auto;
    border-radius: 38px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 3px solid white;
}

.header-logo img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.header-text h1 {
    margin: 0;
    font-size: 2.8rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header-text p {
    margin: 8px 0 0;
    font-size: 1.2rem;
    opacity: 0.9;
    letter-spacing: 1px;
}


/* ===== NAVBAR STYLES ===== */

.navbar {
    background-color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.menu-wrapper {
    position: relative;
}

.nav-links {
    display: flex;
}

.navbar a {
    padding: 16px 20px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.navbar a:hover {
    background-color: #1fbdec;
}

.navbar a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #1fbdec;
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar a:hover::after {
    width: 80%;
}

.navbar a.active {
    background-color: #1fbdec;
}


/* Hamburger */

.hamburger {
    display: none;
    background: none;
    border: 0;
    font-size: 26px;
    color: white;
    cursor: pointer;
    padding: 10px;
}


/* Main Content */

.main-content {
    display: flex;
    margin: 30px 0;
    gap: 30px;
}

.content {
    flex: 3;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.sidebar {
    flex: 1;
}


/* Hero Section */

.hero {
    background: linear-gradient(rgba(0, 70, 135, 0.8), rgba(0, 38, 77, 0.9)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 0;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 25px;
}

.highlight-box {
    background: linear-gradient(135deg, #004687, #00264d);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
}

.highlight-box h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.quick-info {
    background-color: #e8f4ff;
    border-left: 5px solid #004687;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 0 8px 8px 0;
}

.quick-info h3 {
    color: #004687;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}


/* Section Styles */

.section {
    margin-bottom: 40px;
}

.section h3 {
    color: #004687;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e8f4ff;
    font-size: 22px;
}

.section ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.section li {
    margin-bottom: 10px;
}

.card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 25px;
    margin-bottom: 25px;
    border-top: 4px solid #004687;
}

.card h4 {
    color: #004687;
    margin-bottom: 15px;
    font-size: 20px;
}


/* Scholarship Amounts */

.amount-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.amount-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #004687;
}

.amount-card h4 {
    color: #004687;
    margin-bottom: 10px;
}

.amount {
    font-size: 22px;
    font-weight: bold;
    color: #00264d;
    margin: 10px 0;
}


/* Steps */

.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.step {
    flex: 1;
    min-width: 200px;
    background: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #004687;
}

.step-number {
    background: #004687;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
}


/* Buttons */

.btn {
    display: inline-block;
    background: #004687;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background: #00264d;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-large {
    padding: 15px 30px;
    font-size: 18px;
}

.btn-disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

.btn-disabled:hover {
    background: #95a5a6;
    transform: none;
    box-shadow: none;
}


/* Sidebar */

.sidebar-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 30px;
}

.sidebar-card h3 {
    color: #004687;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e8f4ff;
}

.important-dates {
    list-style: none;
    padding: 0;
}

.important-dates li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.important-dates li:last-child {
    border-bottom: none;
}

.date {
    font-weight: bold;
    color: #004687;
}


/* Footer */

footer {
    background: #00264d;
    color: white;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
    color: #4da8ff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #004687;
    font-size: 14px;
    color: #aaa;
}


/* Responsive */

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    .logo {
        justify-content: center;
        margin-bottom: 15px;
    }
    .nav-links {
        flex-wrap: wrap;
    }
    .nav-links a {
        margin: 5px;
        padding: 8px 15px;
    }
    .main-content {
        flex-direction: column;
    }
    .hero h1 {
        font-size: 28px;
    }
    .amount-grid,
    .steps {
        grid-template-columns: 1fr;
    }
}