/* ========== BEREAN BIBLE COLLEGE STYLES (GREEN THEME) ========== */

/* Override base colors with college green theme */
:root {
    --primary-color: #065f46; /* Dark Green */
    --secondary-color: #10b981; /* Bright Green */
    --accent-color: #34d399; /* Light Green */
    --light-bg: #ecfdf5; /* Very Light Green */
}

body {
    background: #f0fdf4;
}

/* Top Bar - Green Theme */
.top-bar {
    background: linear-gradient(135deg, #065f46 0%, #10b981 100%);
}

/* Header Adjustments */
header {
    background: transparent;
}

header.scrolled {
    background: rgba(6, 95, 70, 0.98);
}

header.scrolled .nav-links a {
    color: white;
}

.church-link {
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 20px;
}

/* College Hero Section */
.college-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    background: linear-gradient(135deg, #065f46 0%, #10b981 100%);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 95, 70, 0.8) 0%, rgba(16, 185, 129, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.college-hero h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    animation: fadeInDown 1s ease;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #34d399;
    margin-bottom: 1.5rem;
    font-weight: 600;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-verse {
    font-size: 1.2rem;
    color: white;
    font-style: italic;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #065f46;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    background: #34d399;
    color: white;
}

.cta-button-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0.5rem;
    transition: all 0.3s;
    animation: fadeInUp 1s ease 0.8s both;
}

.cta-button-outline:hover {
    background: white;
    color: #065f46;
    transform: translateY(-3px);
}

/* Mission Section */
.mission-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.mission-section h2 {
    color: #065f46;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #475569;
}

/* Programs Section */
.programs-section {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    padding: 5rem 2rem;
}

.programs-section h2 {
    color: #065f46;
}

.program-card {
    border-top-color: #10b981;
}

.program-card:hover {
    border-top-color: #065f46;
}

.program-card h3 {
    color: #065f46;
}

.program-highlights {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.program-highlights li {
    padding: 0.5rem 0;
    color: #10b981;
    font-weight: 600;
}

.program-highlights li:before {
    content: "✓ ";
    color: #10b981;
    font-weight: bold;
}

/* Why Section */
.why-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-section h2 {
    color: #065f46;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(6, 95, 70, 0.15);
    transition: 0.3s;
    border: 2px solid transparent;
}

.feature-box:hover {
    border-color: #10b981;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 95, 70, 0.25);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-box h3 {
    color: #065f46;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-box p {
    color: #64748b;
    line-height: 1.6;
}

/* Courses Section */
.courses-section {
    background: #f0fdf4;
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.courses-section h2 {
    color: #065f46;
    text-align: center;
    margin-bottom: 3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(6, 95, 70, 0.15);
    border-left: 4px solid #10b981;
    transition: 0.3s;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 95, 70, 0.25);
}

.info-box h4 {
    color: #065f46;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-box p {
    color: #64748b;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #065f46 0%, #10b981 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #065f46;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #34d399;
    color: white;
    transform: translateY(-3px);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: #065f46;
    transform: translateY(-3px);
}

/* Footer - Green Theme */
footer {
    background: linear-gradient(135deg, #065f46 0%, #10b981 100%);
}

/* Override card colors */
.card {
    border-top-color: #10b981;
}

.card h3 {
    color: #065f46;
}

.contact-link {
    color: #10b981;
}

.contact-link:hover {
    color: #065f46;
}

/* Responsive */
@media (max-width: 768px) {
    .college-hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-verse {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

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

/* ========== COLLEGE PAGE SPECIFIC STYLES ========== */

/* Page Hero */
.page-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    position: relative;
    background: linear-gradient(135deg, #065f46 0%, #10b981 100%);
    margin-top: 40px;
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 95, 70, 0.8);
    z-index: 1;
}

.page-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-hero .hero-subtitle {
    font-size: 1.5rem;
    color: #34d399;
    font-weight: 600;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Padding */
.section-padding {
    padding: 5rem 2rem;
}

/* Mission Vision */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.mission-card, .vision-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(6, 95, 70, 0.1);
    border-top: 4px solid #10b981;
}

.mission-card .card-icon, .vision-card .card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.mission-card h3, .vision-card h3 {
    color: #065f46;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* History Section */
.history-section {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    padding: 5rem 2rem;
}

.history-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.history-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.5rem;
}

.history-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(6, 95, 70, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #065f46;
    margin-bottom: 0.5rem;
}

/* Doctrine Grid */
.doctrine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.doctrine-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(6, 95, 70, 0.1);
    transition: 0.3s;
}

.doctrine-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(6, 95, 70, 0.15);
}

.doctrine-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.doctrine-card h3 {
    color: #065f46;
    margin-bottom: 1rem;
}

/* Program Details */
.program-detail-section {
    padding: 5rem 2rem;
}

.program-detail-section.alternate-bg {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.program-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.program-icon {
    font-size: 4rem;
}

.program-header h2 {
    color: #065f46;
    font-size: 2.5rem;
    margin: 0;
}

.program-duration {
    color: #10b981;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.program-overview {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(6, 95, 70, 0.1);
}

.program-overview p {
    margin-bottom: 1rem;
}

.program-courses h3 {
    color: #065f46;
    margin: 2rem 0 1.5rem 0;
    text-align: center;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.course-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(6, 95, 70, 0.1);
}

.course-item h4 {
    color: #065f46;
    margin-bottom: 0.5rem;
}

.program-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(6, 95, 70, 0.1);
}

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.highlight-item h4 {
    color: #065f46;
    margin-bottom: 0.5rem;
}

.structure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
}

.structure-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(6, 95, 70, 0.1);
}

.structure-item h4 {
    color: #065f46;
    margin-bottom: 0.5rem;
}

/* Comparison Table */
.comparison-table table {
    width: 100%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(6, 95, 70, 0.1);
    border-collapse: collapse;
}

.comparison-table th {
    background: linear-gradient(135deg, #065f46 0%, #10b981 100%);
    color: white;
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table tr:nth-child(even) {
    background: #f8fafc;
}

.comparison-table tr:hover {
    background: #ecfdf5;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.step {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(6, 95, 70, 0.1);
    position: relative;
    transition: 0.3s;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #065f46 0%, #10b981 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step h3 {
    color: #065f46;
    margin-bottom: 1rem;
}

/* Requirements & Tabs */
.requirements-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-button {
    padding: 1rem 2rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.tab-button.active,
.tab-button:hover {
    background: linear-gradient(135deg, #065f46 0%, #10b981 100%);
    color: white;
    border-color: #10b981;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.requirements-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(6, 95, 70, 0.1);
    border-top: 4px solid #10b981;
}

.requirements-card h3 {
    color: #065f46;
    margin-bottom: 1.5rem;
    text-align: center;
}

.requirements-card ul {
    list-style: none;
    padding: 0;
}

.requirements-card li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid #f1f5f9;
}

.requirements-card li:last-child {
    border-bottom: none;
}

.requirements-card li::before {
    content: "✅";
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

/* Forms */
.apply-form, .contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(6, 95, 70, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #065f46;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.apply-subtitle, .form-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Dates Grid */
.dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.date-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(6, 95, 70, 0.1);
}

.date-label {
    color: #64748b;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.date-value {
    color: #065f46;
    font-size: 1.3rem;
    font-weight: 600;
}

/* Faculty Styles */
.faculty-stats {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-box {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(6, 95, 70, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #065f46;
    margin-bottom: 0.5rem;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faculty-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(6, 95, 70, 0.1);
    transition: 0.3s;
    text-align: center;
}

.faculty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(6, 95, 70, 0.15);
}

.faculty-photo {
    height: 250px;
    background: linear-gradient(135deg, #10b981, #065f46);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faculty-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
}

.president-card .faculty-photo img,
.dean-card .faculty-photo img {
    width: 140px;
    height: 140px;
}

.faculty-card h3 {
    color: #065f46;
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.3rem;
}

.faculty-card h4 {
    color: #10b981;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.faculty-card p {
    padding: 0 2rem 1.5rem;
    color: #64748b;
    line-height: 1.6;
}

.faculty-courses {
    background: #f0fdf4;
    padding: 1rem 2rem;
    border-radius: 10px;
    margin: 0 2rem 2rem;
    color: #065f46;
    font-weight: 600;
}

.president-card,
.dean-card {
    grid-column: span 2;
}

.president-section .faculty-grid,
.dean-section .faculty-grid {
    grid-template-columns: 1fr;
    justify-items: center;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(6, 95, 70, 0.1);
    border-top: 4px solid #10b981;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    color: #065f46;
    margin-bottom: 1rem;
}

/* Map */
.map-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(6, 95, 70, 0.1);
}

/* Active Nav */
.nav-links a.active {
    color: #34d399;
    font-weight: bold;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(135deg, #10b981, #34d399);
    border-radius: 2px;
}

/* Program CTA */
.program-cta {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .mission-vision-grid,
    .requirements-grid,
    .form-row,
    .history-content,
    .president-card,
    .dean-card {
        grid-template-columns: 1fr;
    }
    
    .program-header {
        flex-direction: column;
        text-align: center;
    }
    
    .apply-form, .contact-form {
        padding: 2rem;
    }
    
    .faculty-grid {
        grid-template-columns: 1fr;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
}
/* ========== CURRICULUM SPECIFIC STYLES ========== */

.year-section {
    margin-bottom: 4rem;
}

.year-section h3 {
    color: #065f46;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 2rem;
    border-top: 3px solid #10b981;
}

.semester-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.semester-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(6, 95, 70, 0.1);
    border-left: 5px solid #10b981;
}

.semester-card h4 {
    color: #065f46;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
}

.course-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
    font-size: 1rem;
}

.course-list li:last-child {
    border-bottom: none;
}

.course-list li::before {
    content: "📖";
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .semester-grid {
        grid-template-columns: 1fr;
    }
    
    .year-section h3 {
        font-size: 1.6rem;
    }
}