/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0;
}

.logo .tagline {
    color: #a8d0ff;
    font-size: 0.9rem;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: block;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Dropdown Styles */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-menu .dropdown-toggle::after {
    content: '▼';
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-menu .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    min-width: 200px;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
}

.nav-menu .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .dropdown-menu li {
    list-style: none;
}

.nav-menu .dropdown-menu a {
    padding: 0.8rem 1.2rem;
    border-radius: 0;
    white-space: nowrap;
}

.nav-menu .dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.nav-menu .dropdown-menu li:first-child a {
    border-radius: 5px 5px 0 0;
}

.nav-menu .dropdown-menu li:last-child a {
    border-radius: 0 0 5px 5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 5rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #e0e0ff;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: #ff6b6b;
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.cta-button:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

.secondary-button {
    display: inline-block;
    background-color: transparent;
    color: #2a5298;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    border: 2px solid #2a5298;
    transition: all 0.3s ease;
    cursor: pointer;
}

.secondary-button:hover {
    background-color: #2a5298;
    color: #fff;
}

/* About Section */
.about {
    padding: 4rem 2rem;
    background-color: #fff;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1e3c72;
}

.about > .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #555;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e3c72;
}

.feature-card p {
    color: #555;
    line-height: 1.8;
}

/* Partnership Section */
.partnership {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    text-align: center;
}

.partnership h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1e3c72;
}

.partnership p {
    max-width: 800px;
    margin: 0 auto 1rem;
    font-size: 1.1rem;
    color: #333;
}

.partnership .secondary-button {
    margin-top: 1.5rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background-color: #1a1a2e;
    color: #fff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #a8d0ff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Apply Page Styles */
.apply-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 3rem 2rem;
    text-align: center;
}

.apply-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.apply-hero p {
    font-size: 1.2rem;
}

.application-form {
    padding: 4rem 2rem;
    background-color: #fff;
}

.form-intro {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.form-intro h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

.form-intro ul {
    list-style-position: inside;
    color: #555;
}

.form-intro li {
    margin-bottom: 0.5rem;
}

.application {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f9f9f9;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.application h3 {
    color: #1e3c72;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #667eea;
}

.application h3:first-child {
    margin-top: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.form-actions button {
    flex: 1;
    padding: 1rem;
    font-size: 1.1rem;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* After Apply Section */
.after-apply {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.after-apply h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1e3c72;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.step h4 {
    color: #667eea;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step p {
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .application {
        padding: 2rem 1.5rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 1rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .about h2,
    .partnership h2,
    .cta-section h2 {
        font-size: 1.8rem;
    }

    .application {
        padding: 1.5rem 1rem;
    }
}
```css
/* ==========================================
   MODERN KSRP WEBSITE ENHANCEMENTS
========================================== */

html {
    scroll-behavior: smooth;
}

body {
    background: #f8fafc;
}

/* Hero Improvements */

.about-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;

    background:
    linear-gradient(
        rgba(15, 23, 42, 0.75),
        rgba(30, 41, 59, 0.75)
    ),
    url('images/kentucky-bg.jpg');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(12px);
    padding: 10px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-hero h1 {
    font-size: 4rem;
    margin-bottom: 15px;
}

.about-hero h2 {
    font-size: 1.7rem;
    max-width: 900px;
    margin: auto;
    margin-bottom: 25px;
    opacity: .95;
}

.about-hero p {
    max-width: 900px;
    margin: auto;
    margin-bottom: 35px;
    font-size: 1.15rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Floating Stats */

.stats-section {
    position: relative;
}

.floating-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.stat-card {
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(15px);
    min-width: 220px;
    padding: 30px;
    border-radius: 20px;
    text-align: center;

    box-shadow:
        0 15px 40px rgba(0,0,0,.12);

    transition: .35s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-card h3 {
    font-size: 2rem;
    color: #2563eb;
}

/* Modern Sections */

.about-main-section,
.why-ksrp,
.department-preview,
.timeline-section,
.tlhmh-spotlight,
.founder-message {
    padding: 100px 0;
}

/* Card Grid */

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;

    box-shadow:
        0 10px 30px rgba(0,0,0,.08);

    transition: .35s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.5),
        transparent
    );

    transition: .8s;
}

.card:hover::before {
    left: 120%;
}

.card h3 {
    color: #1e3c72;
    margin-bottom: 15px;
}

/* Barbourville Section */

.barbourville-highlight {
    padding: 120px 0;
    color: white;

    background:
    linear-gradient(
        135deg,
        #0f172a,
        #1e293b
    );
}

.barbourville-highlight h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.8rem;
}

.highlight-box {
    max-width: 1000px;
    margin: auto;

    background: rgba(255,255,255,.08);

    backdrop-filter: blur(12px);

    border-left: 5px solid #fbbf24;

    border-radius: 20px;

    padding: 40px;
}

/* Department Cards */

.department-card {
    text-decoration: none;
    color: inherit;

    background: white;

    border-radius: 20px;

    padding: 40px;

    text-align: center;

    font-size: 2rem;

    transition: .35s ease;

    box-shadow:
        0 10px 30px rgba(0,0,0,.08);
}

.department-card:hover {
    transform: translateY(-12px) scale(1.04);
}

.department-card h3 {
    margin-top: 15px;
    font-size: 1.2rem;
}

/* Timeline */

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 25px;
}

.timeline-item {
    background: white;
    padding: 30px;
    border-radius: 20px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.08);

    transition: .3s;
}

.timeline-item:hover {
    transform: translateY(-8px);
}

.timeline-item h3 {
    color: #2563eb;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* Founder Message */

.founder-message {
    text-align: center;
}

.founder-message blockquote {
    max-width: 900px;
    margin: auto;

    font-size: 1.5rem;

    font-style: italic;

    line-height: 1.8;

    color: #334155;
}

/* TLHMH Spotlight */

.tlhmh-spotlight {
    text-align: center;
    background: #ffffff;
}

.tlhmh-spotlight p {
    max-width: 800px;
    margin: auto auto 25px;
}

/* CTA Banner */

.community-banner {
    padding: 120px 30px;

    text-align: center;

    color: white;

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #1d4ed8
    );
}

.community-banner h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.community-banner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Buttons */

.cta-button {
    transition: .3s ease;
}

.cta-button:hover {
    transform: translateY(-4px);
}

.secondary-button:hover {
    transform: translateY(-4px);
}

/* Scroll Animation */

.card,
.timeline-item,
.department-card,
.stat-card {
    animation: fadeUp .8s ease;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */

@media (max-width: 768px) {

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero h2 {
        font-size: 1.2rem;
    }

    .community-banner h2 {
        font-size: 2rem;
    }

    .floating-stats {
        margin-top: -40px;
    }

}


.chain-of-command {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.command-section {
    margin-bottom: 80px;
}

.command-section h2 {
    margin-bottom: 30px;
    color: #1e3c72;
}

.command-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 25px;
}

.command-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .3s;
}

.command-card:hover {
    transform: translateY(-8px);
}

.top-rank {
    border: 3px solid #fbbf24;
}

.rank-name {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2563eb;
    margin: 10px 0;
}

.vacant {
    color: #dc2626;
    font-weight: 600;
}

.filled {
    color: #16a34a;
    font-weight: 600;
}

.promotion-path {
    margin-top: 80px;
    text-align: center;
}

.path-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.path-step {
    background: #2563eb;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
}

.arrow {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

/* ========================================
DEPARTMENTS PAGE REVAMP
======================================== */

.departments-hero {
background: linear-gradient(135deg, #0f172a, #1e3a8a);
color: white;
text-align: center;
padding: 120px 20px;
}

.hero-badge {
display: inline-block;
background: rgba(255,255,255,.15);
padding: 8px 20px;
border-radius: 50px;
margin-bottom: 20px;
font-size: .9rem;
font-weight: 600;
backdrop-filter: blur(10px);
}

.departments-hero h1 {
font-size: 4rem;
margin-bottom: 20px;
font-weight: 800;
}

.departments-hero p {
max-width: 850px;
margin: auto;
font-size: 1.2rem;
line-height: 1.8;
opacity: .95;
}

.hero-buttons {
margin-top: 35px;
display: flex;
justify-content: center;
gap: 15px;
flex-wrap: wrap;
}

/* ========================================
STATS
======================================== */

.department-stats {
padding: 80px 20px;
background: #f8fafc;
}

.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
gap: 25px;
}

.stat-card {
background: white;
border-radius: 20px;
padding: 35px;
text-align: center;
box-shadow: 0 15px 35px rgba(0,0,0,.08);
transition: .3s;
}

.stat-card:hover {
transform: translateY(-8px);
}

.stat-card h2 {
color: #2563eb;
font-size: 3rem;
margin-bottom: 10px;
}

.stat-card p {
color: #64748b;
font-weight: 600;
}

/* ========================================
DEPARTMENTS
======================================== */

.departments-content {
padding: 100px 20px;
background: #ffffff;
}

.section-title {
text-align: center;
font-size: 3rem;
color: #0f172a;
margin-bottom: 60px;
}

.department-card {
background: white;
border-radius: 25px;
padding: 40px;
margin-bottom: 35px;

```
box-shadow:
    0 15px 35px rgba(0,0,0,.08);

transition: all .35s ease;
```

}

.department-card:hover {
transform: translateY(-8px);
box-shadow:
0 25px 50px rgba(0,0,0,.12);
}

.featured {
border: 3px solid #2563eb;
}

.department-top {
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
flex-wrap: wrap;
margin-bottom: 25px;
}

.department-top h2 {
font-size: 2rem;
color: #0f172a;
}

.department-card p {
color: #475569;
line-height: 1.8;
}

.department-columns {
display: grid;
grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
gap: 30px;
margin-top: 30px;
}

.department-columns h4 {
margin-bottom: 15px;
color: #1e40af;
}

.department-columns ul {
padding-left: 20px;
}

.department-columns li {
margin-bottom: 10px;
}

/* ========================================
BADGES
======================================== */

.age-tag {
background: #2563eb;
color: white;
padding: 10px 18px;
border-radius: 50px;
font-weight: 700;
font-size: .95rem;
}

.status-open {
display: inline-block;
background: #16a34a;
color: white;
padding: 8px 14px;
border-radius: 50px;
font-size: .8rem;
font-weight: 700;
margin-bottom: 12px;
}

/* ========================================
APPLY BUTTONS
======================================== */

.dept-apply-btn {
display: inline-block;
margin-top: 25px;
background: linear-gradient(135deg,#2563eb,#1d4ed8);
color: white;
padding: 14px 30px;
border-radius: 12px;
text-decoration: none;
font-weight: 700;
transition: .3s;
}

.dept-apply-btn:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(37,99,235,.3);
}

/* ========================================
REQUIREMENTS
======================================== */

.requirements-section {
background: #f8fafc;
padding: 100px 20px;
}

.requirements-section h2 {
text-align: center;
margin-bottom: 50px;
font-size: 2.8rem;
}

.requirements-grid {
display: grid;
grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
gap: 20px;
}

.requirement {
background: white;
padding: 25px;
text-align: center;
border-radius: 18px;
font-weight: 700;

```
box-shadow:
    0 10px 25px rgba(0,0,0,.08);

transition: .3s;
```

}

.requirement:hover {
transform: scale(1.03);
}

/* ========================================
WHY JOIN
======================================== */

.why-join {
padding: 100px 20px;
}

.why-join h2 {
text-align: center;
font-size: 3rem;
margin-bottom: 60px;
}

.why-grid {
display: grid;
grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
gap: 25px;
}

.why-card {
background: white;
padding: 35px;
border-radius: 25px;

```
box-shadow:
    0 15px 35px rgba(0,0,0,.08);

transition: .35s;
```

}

.why-card:hover {
transform: translateY(-10px);
}

.why-card h3 {
margin-bottom: 15px;
color: #1e40af;
}

.why-card p {
color: #64748b;
line-height: 1.8;
}

/* ========================================
FINAL CTA
======================================== */

.final-cta {
background: linear-gradient(135deg,#1e3a8a,#2563eb);
color: white;
text-align: center;
padding: 120px 20px;
}

.final-cta h2 {
font-size: 3rem;
margin-bottom: 20px;
}

.final-cta p {
max-width: 700px;
margin: auto auto 30px;
font-size: 1.15rem;
}

/* ========================================
RESPONSIVE
======================================== */

@media (max-width: 768px) {

```
.departments-hero h1 {
    font-size: 2.5rem;
}

.section-title,
.why-join h2,
.requirements-section h2,
.final-cta h2 {
    font-size: 2rem;
}

.department-top {
    flex-direction: column;
    align-items: flex-start;
}

.department-card {
    padding: 25px;
}
```

}
.rules-hero{
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
    color:#fff;
    text-align:center;
    padding:100px 20px;
}

.hero-badge{
    display:inline-block;
    background:rgba(255,255,255,.15);
    padding:10px 20px;
    border-radius:50px;
    margin-bottom:20px;
}

.hero-stats{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px;
    margin-top:50px;
}

.hero-stat{
    background:rgba(255,255,255,.1);
    backdrop-filter:blur(10px);
    padding:25px;
    border-radius:20px;
}

.overview-grid,
.nav-grid,
.ban-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:30px;
}

.overview-card,
.nav-card,
.ban-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    text-align:center;
    transition:.3s;
    text-decoration:none;
    color:#111;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.overview-card:hover,
.nav-card:hover,
.ban-card:hover{
    transform:translateY(-8px);
}

.announcement-box{
    background:#fff;
    padding:40px;
    border-radius:25px;
    margin-top:-50px;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.instant-ban-section{
    padding:80px 20px;
}

.ban-warning{
    background:linear-gradient(135deg,#991b1b,#dc2626);
    color:#fff;
    padding:50px;
    border-radius:25px;
}

.ban-card{
    background:rgba(255,255,255,.15);
    color:#fff;
    font-weight:700;
}

/* ==========================================
   RESOURCES PAGE
========================================== */

.resource-banner {
    padding: 60px 20px;
}

.resource-banner .container {
    background: linear-gradient(135deg, #173a74, #2b5cb8);
    color: white;
    text-align: center;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

.resource-banner h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.resource-banner p {
    max-width: 900px;
    margin: auto;
    line-height: 1.8;
    opacity: .95;
}

.resource-grid-section {
    padding: 70px 20px;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 30px;
}

.resource-card {
    background: white;
    border-radius: 18px;
    padding: 30px;
    transition: all .35s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    position: relative;
    overflow: hidden;
}

.resource-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg,#1e3c72,#4f83ff);
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,.15);
}

.resource-card h3 {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.resource-card p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.resource-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.resource-card ul li {
    padding: 8px 0;
    color: #444;
    border-bottom: 1px solid rgba(0,0,0,.05);
}

.resource-card ul li:last-child {
    border-bottom: none;
}

.resource-card ul li::before {
    content: "✓";
    color: #2b5cb8;
    font-weight: bold;
    margin-right: 10px;
}

.resource-btn {
    display: inline-block;
    background: linear-gradient(135deg,#1e3c72,#2b5cb8);
    color: white;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s ease;
}

.resource-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(43,92,184,.35);
}

.lighthouse-card {
    background: linear-gradient(135deg,#f0fff5,#d6ffe8);
}

.lighthouse-card::before {
    background: linear-gradient(90deg,#00b86b,#00d97e);
}

/* ==========================================
   BARBOURVILLE HIGHLIGHT
========================================== */

.resource-highlight {
    padding: 80px 20px;
}

.highlight-card {
    background: linear-gradient(
        135deg,
        #173a74,
        #2454a6,
        #2f6ad3
    );
    color: white;
    padding: 60px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0,0,0,.18);
}

.highlight-card h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.highlight-card p {
    max-width: 900px;
    margin: auto;
    line-height: 1.9;
    font-size: 1.1rem;
}

/* ==========================================
   FOOTER CTA
========================================== */

.resource-footer {
    padding: 80px 20px;
    text-align: center;
}

.resource-footer h2 {
    font-size: 2.4rem;
    color: #1e3c72;
    margin-bottom: 15px;
}

.resource-footer p {
    max-width: 750px;
    margin: auto;
    color: #555;
    line-height: 1.8;
}

.footer-actions {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ==========================================
   INTERACTIVE EFFECTS
========================================== */

.resource-card:hover h3 {
    color: #2b5cb8;
}

.resource-card:hover .resource-btn {
    background: linear-gradient(
        135deg,
        #2b5cb8,
        #4f83ff
    );
}

.resource-card {
    cursor: pointer;
}

.resource-card:hover::before {
    height: 8px;
}

/* ==========================================
   QUICK ANIMATIONS
========================================== */

.resource-card,
.highlight-card,
.resource-banner .container {
    animation: fadeUp .6s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 992px) {

    .resource-grid {
        grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    }

    .highlight-card {
        padding: 40px;
    }

    .highlight-card h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {

    .resource-banner .container {
        padding: 35px 25px;
    }

    .resource-banner h3 {
        font-size: 1.7rem;
    }

    .resource-card {
        padding: 25px;
    }

    .highlight-card {
        padding: 30px;
    }

    .resource-footer h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {

    .resource-grid {
        grid-template-columns: 1fr;
    }

    .resource-banner h3 {
        font-size: 1.4rem;
    }

    .highlight-card h2 {
        font-size: 1.6rem;
    }

    .highlight-card p {
        font-size: 1rem;
    }

    .footer-actions {
        flex-direction: column;
        align-items: center;
    }

    .footer-actions a {
        width: 100%;
        max-width: 300px;
    }
}