* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #333;
    --accent-color: #0066cc;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f8f8;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    width: 100%;
    margin: 0;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-left: auto;
    padding-right: 0;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
    font-size: 1.25rem;
}

.nav-link:hover {
    opacity: 0.7;
}

/* Internal pages - black nav text */
body.internal-page .navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body.internal-page .logo-text {
    color: var(--primary-color);
    font-size: 1.25rem;
}

body.internal-page .nav-link {
    color: var(--primary-color);
    font-size: 1.25rem;
}

body.internal-page .nav-link:hover {
    opacity: 0.7;
}

body.internal-page .bar {
    background-color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/brown.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

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

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-title span {
    display: inline-block;
    opacity: 0;
    animation: fadeInLetter 0.6s ease-out forwards;
}

@keyframes fadeInLetter {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 1.75rem;
    margin-top: 2rem;
    opacity: 0.9;
}

.hero-subtitle span {
    display: inline-block;
    opacity: 0;
    animation: fadeInLetter 0.4s ease-out forwards;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    margin-top: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-link {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* About Section */
.about {
    padding: 6rem 2rem;
    text-align: center;
    background: var(--white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.about-text {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.differentiators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.differentiator-item {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.differentiator-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.differentiator-item.animate-in:hover {
    transform: translateY(-5px) translateX(0);
}

.differentiator-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.differentiator-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Supporters Section */
.supporters {
    padding: 1.5rem 2rem 8rem 2rem;
    background: var(--white);
    text-align: center;
}

.supporters-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.supporters-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.supporter-logo-link {
    text-decoration: none;
    display: block;
    cursor: pointer;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.supporter-logo-link.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.supporter-logo {
    max-height: 100px;
    max-width: 300px;
    object-fit: contain;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0.7;
}

.supporter-logo-link:hover .supporter-logo {
    opacity: 1;
    transform: scale(1.05);
}

.supporter-logo-link.animate-in .supporter-logo {
    opacity: 0.7;
}

/* Stats Section */
.stats {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
    margin-bottom: 2rem;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.grants-cycle {
    text-align: center;
    margin-top: 2rem;
    font-weight: 600;
    color: var(--text-color);
}

/* Portfolio Section */
.portfolio {
    padding: 6rem 2rem;
    background: var(--white);
}

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

.portfolio-item {
    padding: 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.portfolio-item p {
    color: var(--text-light);
}

/* Page Hero Section */
.page-hero {
    margin-top: 80px;
    padding: 2rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

/* Incubator Section */
.incubator {
    padding: 6rem 2rem;
    background: var(--white);
}

.incubator-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    text-align: center;
}

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

.feature-item {
    padding: 2rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: border-color 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out, border-color 0.3s ease;
}

.feature-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.feature-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.portfolio-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Partners Section */
.partners {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

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

.partner-item {
    padding: 2rem;
    text-align: center;
    background: var(--white);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partner-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.partner-item p {
    color: var(--text-light);
    font-style: italic;
}

/* Grants Section */
.grants {
    padding: 6rem 2rem;
    background: var(--white);
    text-align: center;
}

.grants-text {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

/* Positioning Section */
.positioning {
    padding: 6rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

.positioning-text {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.positioning-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-item {
    padding: 2.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.comparison-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.comparison-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Apply Section */
.apply {
    padding: 6rem 2rem;
    background: var(--white);
    text-align: center;
}

.apply-text {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.apply-benefits {
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: left;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

.apply-benefits h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.apply-benefits ul {
    list-style: none;
    padding: 0;
}

.apply-benefits li {
    padding: 0.75rem 0;
    color: var(--text-light);
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
}

.apply-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Team Section */
.team {
    padding: 2rem 2rem 6rem 2rem;
    background: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.team-member-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.team-member-card-link.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.team-member-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    cursor: pointer;
}

.team-member-card-link:hover .team-member-card {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.linkedin-hover-icon {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    background: rgba(10, 102, 194, 0.95);
    border-radius: 50%;
    padding: 1rem;
    color: var(--white);
    pointer-events: none;
    z-index: 10;
}

.team-member-card-link:hover .linkedin-hover-icon {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.team-member-card-link:hover .team-photo,
.team-member-card-link:hover .team-photo-placeholder {
    opacity: 0.7;
    filter: brightness(0.7);
}

.team-photo-container {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f0f0f0;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.team-photo-placeholder {
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.team-member-info {
    padding: 1.5rem;
    text-align: left;
}

.team-member-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #0a66c2;
}

.team-member-title {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: #0a66c2;
    opacity: 0.8;
}

.team-member-description {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

/* Placements Section */
.placements {
    padding: 6rem 2rem;
    margin-top: 4rem;
    background: var(--white);
    text-align: center;
}

.placements-text {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.placements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.placement-logo-card {
    text-decoration: none;
    display: block;
    background: var(--white);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out, box-shadow 0.3s ease;
}

.placement-logo-card.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.placement-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.placement-logo-container {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placement-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.placement-logo-card:hover .placement-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.team-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    font-weight: 700;
}

/* Workshops Section */
.workshops {
    padding: 6rem 2rem;
    background: var(--white);
}

.workshops-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    text-align: center;
}

.upcoming-workshops-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: left;
}

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

.workshop-item {
    padding: 2rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out, border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    background-color: var(--white);
}

.workshop-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.workshop-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: #ffe0e1;
}

.workshop-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.workshop-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background: var(--white);
    text-align: center;
}

.contact-text {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.contact-info {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info p {
    color: var(--text-light);
    margin: 0.5rem 0;
}

/* Footer */
.footer {
    padding: 2rem;
    background: #FF5A5F;
    color: var(--white);
    text-align: left;
}

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

.footer-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-info {
    margin-bottom: 1rem;
}

.footer-info p {
    font-size: 0.9rem;
    margin: 0.25rem 0;
    color: var(--white);
    opacity: 0.9;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    color: var(--white);
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.7;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .logo-img {
        width: 40px;
        height: 40px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    /* Overlay backdrop when menu is open */
    body.menu-open::before {
        content: '';
        position: fixed;
        left: 0;
        top: 0;
        width: 50%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
        pointer-events: none;
    }

    .nav-menu {
        position: fixed;
        right: -50%;
        top: 0;
        height: 100vh;
        flex-direction: column;
        background-color: rgba(240, 240, 240, 0.98);
        backdrop-filter: blur(10px);
        width: 50%;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
        padding: 2rem;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    /* Hamburger animation */
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .nav-menu li {
        width: 100%;
        margin: 0.75rem 0;
        list-style: none;
    }

    .nav-menu .nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 1rem 3rem;
        background: linear-gradient(135deg, #FF5A5F 0%, #e04a4f 100%);
        color: var(--white);
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        border-radius: 12px;
        text-align: center;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-menu .nav-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .nav-menu .nav-link:active {
        transform: translateY(0);
    }

    .hero {
        padding: 2rem 1rem;
        min-height: 90vh;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    .cta-button {
        padding: 0.75rem 2rem;
        font-size: 0.9rem;
        margin-top: 1.5rem;
    }

    .about {
        padding: 4rem 1.5rem;
    }

    .about-text {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .differentiators {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .differentiator-item {
        padding: 1.5rem;
    }

    .differentiator-item h3 {
        font-size: 1.25rem;
    }

    .supporters {
        padding: 2rem 1.5rem 4rem 1.5rem;
    }

    .supporters-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .supporters-logos {
        gap: 1rem;
        flex-wrap: nowrap;
    }

    .supporter-logo-link {
        flex: 1;
    }

    .supporter-logo {
        max-height: 60px;
        max-width: 120px;
        width: 100%;
    }

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

    .portfolio-grid,
    .partners-grid,
    .team-grid,
    .program-features,
    .positioning-comparison,
    .workshops-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .placements {
        padding: 4rem 1.5rem;
        margin-top: 2rem;
    }

    .placements-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-hero {
        padding: 1.5rem 1rem;
    }

    .incubator,
    .workshops {
        padding: 4rem 1.5rem;
    }

    .incubator-intro,
    .workshops-intro {
        font-size: 1rem;
    }

    .footer {
        padding: 2rem 1.5rem;
    }

    .footer-title {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }

    .logo-img {
        width: 35px;
        height: 35px;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .hero {
        padding: 1.5rem 1rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-top: 1rem;
    }

    .cta-button {
        padding: 0.65rem 1.5rem;
        font-size: 0.85rem;
    }

    .about {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .supporters-title {
        font-size: 1.25rem;
    }

    .supporter-logo-link {
        flex: 1;
    }

    .supporter-logo {
        max-height: 50px;
        max-width: 80px;
        width: 100%;
    }

    .supporters-logos {
        gap: 0.5rem;
    }

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

    .placement-logo-container {
        height: 60px;
    }

    .page-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}


