/*
Theme Name: HousingLab Development
Description: A minimal, elegant WordPress theme inspired by contemporary design
Version: 4.0
Author: HousingLab Development
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography - Scope Copenhagen Style */
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    line-height: 1.05;
}

h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
}

p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

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

/* Header - Minimal Style */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem;
}

.site-logo {
    font-size: 1.25rem;
    font-weight: 400;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.main-nav a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    color: #2E7D32;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #2E7D32;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Hero Section - Scope Style */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #ffffff;
    padding-top: 120px;
    position: relative;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 300;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #666666;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid #e5e5e5;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.875rem;
    color: #666666;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Qualification Form Section - Minimal Style */
.qualification-section {
    padding: 8rem 0;
    background: #fafafa;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 5rem;
}

.form-header h2 {
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 300;
}

.form-header p {
    color: #666666;
    font-size: 1.25rem;
    font-weight: 400;
}

.qualification-form {
    background: #ffffff;
    padding: 4rem;
    border-radius: 0;
    border: 1px solid #e5e5e5;
}

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

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

.form-group label {
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form-group input,
.form-group select {
    padding: 1.5rem 0;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: transparent;
    font-weight: 400;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: #2E7D32;
}

.form-group input::placeholder {
    color: #999999;
    font-weight: 300;
}

.form-submit {
    text-align: center;
    margin-top: 4rem;
}

.submit-btn {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 1.5rem 4rem;
    font-size: 0.875rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.submit-btn:hover {
    background: #2E7D32;
    transform: translateY(-2px);
}

.btn-loading {
    display: none;
}

.submit-btn.loading .btn-text {
    display: none;
}

.submit-btn.loading .btn-loading {
    display: inline;
}

.form-disclaimer {
    margin-top: 2rem;
    font-size: 0.875rem;
    color: #999999;
    font-weight: 300;
}

/* How It Works Section - Minimal Style */
.how-it-works {
    padding: 8rem 0;
    background: #ffffff;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 5rem;
    color: #1a1a1a;
    font-weight: 300;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.step {
    text-align: center;
    padding: 2rem 0;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 300;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.step:hover .step-number {
    background: #2E7D32;
    transform: scale(1.05);
}

.step h3 {
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.step p {
    color: #666666;
    font-weight: 400;
}

/* Cities Section - Minimal Style */
.cities-section {
    padding: 8rem 0;
    background: #fafafa;
}

.cities-section h2 {
    text-align: center;
    margin-bottom: 5rem;
    color: #1a1a1a;
    font-weight: 300;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.city-card {
    background: #ffffff;
    padding: 2rem;
    border: 1px solid #e5e5e5;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #2E7D32;
}

.city-card h3 {
    margin-bottom: 0;
    color: #1a1a1a;
    font-weight: 400;
    font-size: 1.25rem;
}

/* About Section */
.about-section {
    padding: 8rem 0;
    background: #ffffff;
}

.about-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 300;
}

.about-section p {
    text-align: center;
    color: #666666;
    font-size: 1.25rem;
}

/* Gallery Section */
.gallery-section {
    padding: 8rem 0;
    background: #fafafa;
}

.gallery-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 300;
}

.gallery-section p {
    text-align: center;
    color: #666666;
    font-size: 1.25rem;
}

/* Qualification Results Page */
.results-section {
    padding: 8rem 0;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.results-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.results-content h1 {
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 300;
}

.results-subtitle {
    font-size: 1.25rem;
    color: #666666;
    margin-bottom: 4rem;
}

.qualification-status {
    margin-bottom: 4rem;
}

.status-card {
    background: #f8fafc;
    padding: 3rem;
    border: 1px solid #e5e5e5;
    border-radius: 0;
}

.status-card h2 {
    color: #2E7D32;
    margin-bottom: 1rem;
    font-weight: 400;
}

.status-card p {
    color: #666666;
    margin-bottom: 0;
}

.programs-available {
    margin-bottom: 4rem;
}

.programs-available h3 {
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 400;
}

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

.program-result {
    background: #ffffff;
    padding: 2rem;
    border: 1px solid #e5e5e5;
    text-align: center;
}

.program-result h4 {
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 400;
}

.program-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: inline-block;
}

.program-status.high {
    background: #2E7D32;
    color: #ffffff;
}

.program-status.medium {
    background: #f59e0b;
    color: #ffffff;
}

.program-result p {
    color: #666666;
    margin-bottom: 0;
    font-size: 0.875rem;
}

.next-steps {
    margin-bottom: 4rem;
}

.next-steps h3 {
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 400;
}

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

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.step-content p {
    color: #666666;
    margin-bottom: 0;
    font-size: 0.875rem;
}

.contact-info {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8fafc;
    border: 1px solid #e5e5e5;
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 400;
}

.contact-info p {
    color: #666666;
    margin-bottom: 0.5rem;
}

.back-to-home {
    text-align: center;
}

.cta-button {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cta-button:hover {
    background: #2E7D32;
    transform: translateY(-2px);
}

/* Footer - Minimal Style */
.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 400;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-section p,
.footer-section a {
    color: #999999;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 2rem;
    text-align: center;
    color: #666666;
    font-weight: 300;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .header-content {
        padding: 1.5rem;
    }
    
    .main-nav {
        display: none;
    }
    
    .hero {
        padding-top: 120px;
        min-height: 80vh;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .qualification-form {
        padding: 2rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }

/* How It Works Section */
.how-it-works {
    padding: 8rem 0;
    background: white;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2E7D32;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0 auto 1.5rem;
}

.step h3 {
    margin-bottom: 1rem;
}

.step p {
    color: #666;
}

/* Cities Section */
.cities-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.cities-section h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.city-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.city-card h3 {
    color: #2E7D32;
}

/* About and Gallery Sections */
.about-section,
.gallery-section {
    padding: 6rem 0;
    background: white;
}

.about-section h2,
.gallery-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

/* About Us Section Styling */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-intro {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2E7D32;
    margin-bottom: 2rem;
    text-align: center;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: #475569;
}

.about-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    margin: 3rem 0 1.5rem 0;
    text-align: center;
}

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

.feature-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2E7D32;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 0.5rem;
}

.feature-item p {
    margin-bottom: 0;
    color: #475569;
}

.promise-items {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.promise-items p {
    margin-bottom: 1rem;
    color: #475569;
}

.promise-items p:last-child {
    margin-bottom: 0;
}

.about-closing {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2E7D32;
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f0f9f0;
    border-radius: 12px;
}

/* Qualification Results Pages */
.qualification-results {
    padding: 8rem 0;
    background: #f8fafc;
    min-height: 100vh;
}

.results-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.result-icon {
    margin-bottom: 2rem;
}

.qualification-results h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.result-subtitle {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.qualification-score {
    margin-bottom: 4rem;
}

.score-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-weight: 600;
}

.score-circle.high {
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
}

.score-circle.medium {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.score-circle.low {
    background: linear-gradient(135deg, #ef4444, #f87171);
}

.score-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.score-label {
    font-size: 1rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.qualification-details,
.improvement-areas,
.action-plan,
.immediate-actions,
.success-stories,
.next-steps {
    margin-bottom: 4rem;
    text-align: left;
}

.qualification-details h3,
.improvement-areas h3,
.action-plan h3,
.immediate-actions h3,
.success-stories h3,
.next-steps h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.benefits-list,
.challenges-list {
    list-style: none;
    padding: 0;
}

.benefits-list li,
.challenges-list li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: #475569;
    border-bottom: 1px solid #e2e8f0;
}

.benefits-list li:last-child,
.challenges-list li:last-child {
    border-bottom: none;
}

.steps-grid,
.improvement-grid,
.plan-grid,
.actions-grid,
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-card,
.improvement-card,
.plan-card,
.action-card,
.story-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.step-card:hover,
.improvement-card:hover,
.plan-card:hover,
.action-card:hover,
.story-card:hover {
    transform: translateY(-5px);
}

.step-number,
.plan-number {
    width: 40px;
    height: 40px;
    background: #2E7D32;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto 1rem;
}

.step-card h4,
.improvement-card h4,
.plan-card h4,
.action-card h4,
.story-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1rem;
}

.step-card p,
.improvement-card p,
.plan-card p,
.action-card p,
.story-card p {
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-btn,
.action-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #2E7D32;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.step-btn:hover,
.action-btn:hover {
    background: #1b5e20;
}

.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
}

.contact-info h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-btn.primary {
    background: #2E7D32;
    color: white;
}

.contact-btn.primary:hover {
    background: #1b5e20;
    transform: translateY(-2px);
}

.contact-btn.secondary {
    background: #f8fafc;
    color: #2E7D32;
    border: 2px solid #2E7D32;
}

.contact-btn.secondary:hover {
    background: #2E7D32;
    color: white;
}

.additional-info {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.additional-info h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 2rem;
}

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

.program-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #2E7D32;
}

.program-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.program-card p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Mobile Responsive for Results Pages */
@media (max-width: 768px) {
    .qualification-results {
        padding: 4rem 0;
    }
    
    .qualification-results h1 {
        font-size: 2rem;
    }
    
    .result-subtitle {
        font-size: 1.1rem;
    }
    
    .score-circle {
        width: 120px;
        height: 120px;
    }
    
    .score-number {
        font-size: 2rem;
    }
    
    .steps-grid,
    .improvement-grid,
    .plan-grid,
    .actions-grid,
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
}