/* Header UI similar to provided screenshot */
:root {
    --blue-900: #06283D;
    --blue-800: #0B3954;
    --blue-700: #0d3b66;
    --ink: #0f172a;
}

* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
body { font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial; color: var(--ink); }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Top bar */
.topbar { background: var(--blue-900); color: #dbeafe; font-size: 12px; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 36px; }
.topbar a { color: #dbeafe; text-decoration: none; margin-left: 12px; }
.topbar .right { display: flex; align-items: center; gap: 8px; }
.topbar button { background: transparent; border: 1px solid rgba(255,255,255,0.3); color: #fff; padding: 2px 6px; border-radius: 4px; cursor: pointer; }
.topbar .font-btn.active { background: #1e3a8a; border-color: #1e3a8a; }

/* Brand row */
.brand-row { background: #fff; border-bottom: 1px solid #e5e7eb; }
.brand-row .container { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; }
.brand { display: flex; align-items: center; gap: 12px; justify-self: end; }
.brand-right { justify-self: end; }
.govt { display: flex; align-items: center; gap: 12px; }
.emblem { width: 56px; height: 56px; object-fit: contain; }
.govt-title { font-size: 20px; margin: 0; }
.logo { width: 56px; height: 56px; object-fit: contain; }
.brand-title { font-size: 24px; line-height: 1; margin: 0; }
.brand-sub { margin: 2px 0 0 0; font-size: 12px; color: #475569; }
.actions { display: flex; align-items: center; gap: 10px; justify-self: center; }
.search { display: none; align-items: center; gap: 6px; }
.search input { padding: 8px 10px; border-radius: 8px; border: 1px solid #cbd5e1; min-width: 220px; }
.search button { padding: 8px 12px; border-radius: 8px; border: none; background: var(--blue-700); color: #fff; cursor: pointer; }
.search-btn { background: #eef2ff; border: 1px solid #c7d2fe; border-radius: 999px; width: 38px; height: 38px; cursor: pointer; }
.search.show { display: flex; }

/* Nav */
.navbar { background: var(--blue-800); }
.navbar .container { overflow-x: auto; }
.menu { list-style: none; display: flex; gap: 18px; margin: 0; padding: 10px 0; }
.menu a { color: #e0f2fe; text-decoration: none; font-weight: 600; white-space: nowrap; }
.menu a:hover { text-decoration: underline; }

/* Demo main area */
.demo-main { 
    padding: 24px 0 64px; 
    background: #f8fafc; 
    min-height: calc(100% - 36px - 64px);
    position: relative;
    overflow: hidden;
}

.demo-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('jammu and kashmir map.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px);
    opacity: 0.8;
    z-index: 0;
}

.demo-main .container {
    position: relative;
    z-index: 1;
    min-height: 400px;
}

/* Photos Section */
.photos-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px 20px;
    margin: 20px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.photos-header {
    text-align: center;
    margin-bottom: 30px;
}

.photos-header h2 {
    color: var(--blue-900);
    font-size: 2rem;
    margin-bottom: 10px;
}

.photos-header p {
    color: var(--blue-800);
    font-size: 1.1rem;
    margin: 0;
}

.photos-carousel {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 20px;
}

.photo-nav {
    background: var(--blue-800);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.photo-nav:hover {
    background: var(--blue-900);
    transform: scale(1.1);
}

.photo-nav:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

.photos-container {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

.photos-track {
    display: flex;
    transition: transform 0.5s ease;
}

.photo-item {
    flex: 0 0 100%;
    padding: 0 10px;
}

.photo-placeholder {
    background: linear-gradient(135deg, var(--blue-700), var(--blue-800));
    color: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.photo-placeholder:hover {
    transform: translateY(-5px);
}

.photo-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.photo-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.photo-placeholder p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    color: white;
}

.photos-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--blue-800);
    transform: scale(1.2);
}

.indicator:hover {
    background: var(--blue-700);
}

/* Government Sites Section */
.government-sites {
    background: #fff;
    padding: 40px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.government-sites h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--blue-900);
    font-size: 28px;
}

.sites-carousel {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-btn {
    background: var(--blue-800);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.carousel-btn:hover {
    background: var(--blue-900);
}

.sites-container {
    flex: 1;
    overflow: hidden;
}

.sites-track {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
}

.site-item {
    flex: 0 0 140px;
    text-align: center;
    padding: 20px 10px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.site-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.site-logo {
    font-weight: bold;
    font-size: 14px;
    color: var(--blue-900);
    margin-bottom: 8px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-item span {
    font-size: 12px;
    color: #64748b;
}

/* Footer */
.footer {
    background: #374151;
    color: #d1d5db;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-column h3 {
    color: #f9fafb;
    font-size: 16px;
    margin-bottom: 15px;
    border-bottom: 1px solid #4b5563;
    padding-bottom: 5px;
}

.footer-column h4 {
    color: #f3f4f6;
    font-size: 14px;
    margin: 20px 0 10px 0;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #60a5fa;
}

.qr-section {
    text-align: center;
    margin-bottom: 20px;
}

.qr-code {
    width: 80px;
    height: 80px;
    background: #4b5563;
    border: 2px solid #6b7280;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 12px;
    color: #9ca3af;
}

.nic-logo {
    margin-bottom: 15px;
    font-size: 12px;
    color: #e5e7eb;
}

.footer-text {
    margin-bottom: 20px;
}

.footer-text p {
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #9ca3af;
}

.social-media {
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-icon {
    width: 30px;
    height: 30px;
    background: #4b5563;
    color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    transition: background 0.3s;
}

.social-icon.facebook:hover { background: #1877f2; }
.social-icon.youtube:hover { background: #ff0000; }
.social-icon.twitter:hover { background: #1da1f2; }

.awards {
    margin-bottom: 20px;
}

.award-icons {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
}

.award {
    font-size: 11px;
    color: #9ca3af;
}

.browser-support {
    margin-bottom: 20px;
}

.browser-support p {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 10px;
}

.last-updated {
    font-size: 11px;
    color: #9ca3af;
}


/* Responsive */
@media (max-width: 700px) {
    .brand-sub { display: none; }
    .brand-row .container { flex-direction: column; gap: 10px; }
    .govt { order: 1; }
    .actions { order: 2; align-self: flex-end; }
    .brand-right { order: 3; }
    
    /* Government Sites Responsive */
    .sites-carousel {
        gap: 10px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .site-item {
        flex: 0 0 120px;
        padding: 15px 8px;
    }
    
    .site-logo {
        font-size: 12px;
        min-height: 35px;
    }
    
    .site-item span {
        font-size: 11px;
    }
    
    /* Footer Responsive */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-column h3 {
        font-size: 14px;
    }
    
    .footer-column a {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .government-sites h2 {
        font-size: 24px;
    }
    
    .sites-track {
        gap: 15px;
    }
    
    .site-item {
        flex: 0 0 100px;
        padding: 12px 6px;
    }
    
    /* Main content responsive */
    .demo-main .container {
        min-height: 300px;
    }
    
    /* Photos section responsive */
    .photos-section {
        padding: 30px 15px;
        margin: 15px 0;
    }
    
    .photos-header h2 {
        font-size: 1.5rem;
    }
    
    .photos-header p {
        font-size: 1rem;
    }
    
    .photo-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .photo-placeholder {
        padding: 30px 20px;
        min-height: 250px;
    }
    
    .photo-icon {
        font-size: 3rem;
        margin-bottom: 15px;
    }
    
    .photo-placeholder h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .photo-placeholder p {
        font-size: 0.9rem;
    }
    
}

/* Chatbot Container */
#chatbot-container {
    position: fixed;
    bottom: 100px;
    right: -400px;
    width: 380px;
    height: 600px;
    z-index: 9999;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out;
    background: #fff;
    display: none;
}

#chatbot-container.show {
    transform: translateX(-420px);
    display: block;
}

#chatbot-frame {
    width: 100%;
    height: 100%;
    border: none;
}

/* Close Button */
#chatbot-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.3s ease;
}

#chatbot-close::before,
#chatbot-close::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 2px;
    background: #fff;
    transform: rotate(45deg);
}

#chatbot-close::after {
    transform: rotate(-45deg);
}

#chatbot-close:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: rotate(90deg);
}

/* Toggle Button */
#chatbot-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4161f3, #6c47ff);
    cursor: pointer;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(65, 97, 243, 0.35);
    border: none;
}

#chatbot-toggle img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

#chatbot-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(65, 97, 243, 0.45);
}

/* Departments Page */
.departments-main {
    padding: 40px 0;
    background: #f8fafc;
    min-height: calc(100vh - 200px);
}

.departments-main h1 {
    color: var(--blue-900);
    text-align: center;
    margin-bottom: 10px;
    font-size: 2.5rem;
}

.departments-main > .container > p {
    text-align: center;
    color: var(--blue-800);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.department-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.department-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.department-card h3 {
    color: var(--blue-900);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.department-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.department-link {
    color: var(--blue-700);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.department-link:hover {
    color: var(--blue-900);
    text-decoration: underline;
}

/* College Recommendation Button */
.college-recommendation-section {
    text-align: center;
    margin-top: 30px;
}

.find-college-button {
    background: linear-gradient(135deg, var(--blue-700), var(--blue-800));
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 59, 102, 0.3);
    text-decoration: none;
}

.find-college-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 59, 102, 0.4);
    background: linear-gradient(135deg, var(--blue-800), var(--blue-900));
}

.button-icon {
    font-size: 1.2rem;
}

/* Action Buttons Section */
.action-buttons-section {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.college-recommendation-section,
.skill-development-section {
    text-align: center;
    flex: 1;
    max-width: 300px;
}

.find-college-button,
.skill-development-button {
    width: 100%;
    padding: 18px 25px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    min-height: 60px;
}

.find-college-button {
    background: linear-gradient(135deg, var(--blue-700), var(--blue-800));
    color: white;
    box-shadow: 0 4px 15px rgba(13, 59, 102, 0.3);
}

.find-college-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 59, 102, 0.4);
    background: linear-gradient(135deg, var(--blue-800), var(--blue-900));
}

.skill-development-button {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.skill-development-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669, #047857);
}

.button-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* Responsive button alignment */
@media (max-width: 768px) {
    .action-buttons-section {
        gap: 20px;
        flex-direction: column;
    }

    .college-recommendation-section,
    .skill-development-section {
        max-width: 100%;
        flex: none;
    }

    .find-college-button,
    .skill-development-button {
        width: 100%;
        padding: 16px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .action-buttons-section {
        gap: 15px;
    }

    .find-college-button,
    .skill-development-button {
        padding: 14px 18px;
        font-size: 0.95rem;
        min-height: 55px;
    }

    .button-icon {
        font-size: 1.2rem;
    }
}

/* College Recommendation Modal */
.college-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(135deg, var(--blue-700), var(--blue-800));
    color: white;
    border-radius: 16px 16px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.modal-body {
    padding: 30px;
}

.question-step h3 {
    color: var(--blue-900);
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.option-btn {
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    padding: 15px 20px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--blue-800);
    transition: all 0.3s ease;
    text-align: center;
}

.option-btn:hover {
    border-color: var(--blue-700);
    background: #eef2ff;
    transform: translateY(-2px);
}

.option-btn.selected {
    background: var(--blue-700);
    color: white;
    border-color: var(--blue-700);
    box-shadow: 0 4px 12px rgba(13, 59, 102, 0.3);
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #e5e7eb;
    background: #f8fafc;
    border-radius: 0 0 16px 16px;
}

.progress-indicator {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step.active {
    background: var(--blue-700);
    color: white;
}

.step.completed {
    background: #10b981;
    color: white;
}

/* Results Section */
.results-section h3 {
    color: var(--blue-900);
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center;
}

.college-list {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.college-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.college-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.college-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.college-header h4 {
    color: var(--blue-900);
    font-size: 1.2rem;
    margin: 0;
    flex: 1;
}

.college-location {
    background: var(--blue-100);
    color: var(--blue-800);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

.college-details {
    margin-bottom: 15px;
}

.college-course,
.college-fees,
.college-rating {
    margin: 5px 0;
    font-size: 0.9rem;
    color: #64748b;
}

.college-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.highlight {
    background: #dbeafe;
    color: var(--blue-800);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

.college-actions {
    display: flex;
    gap: 10px;
}

.college-btn {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.college-btn.primary {
    background: var(--blue-700);
    color: white;
}

.college-btn.primary:hover {
    background: var(--blue-800);
    transform: translateY(-1px);
}

.college-btn.secondary {
    background: #f3f4f6;
    color: var(--blue-800);
    border: 1px solid #d1d5db;
}

.college-btn.secondary:hover {
    background: #e5e7eb;
}

.results-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.action-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn.primary {
    background: var(--blue-700);
    color: white;
}

.action-btn.primary:hover {
    background: var(--blue-800);
    transform: translateY(-1px);
}

.action-btn.secondary {
    background: #f3f4f6;
    color: var(--blue-800);
    border: 1px solid #d1d5db;
}

.action-btn.secondary:hover {
    background: #e5e7eb;
}

/* Responsive Modal */
@media (max-width: 700px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 20px;
    }

    .option-grid {
        grid-template-columns: 1fr;
    }

    .college-actions {
        flex-direction: column;
    }

    .results-actions {
        flex-direction: column;
    }
}
