:root {
    --primary-red: #bf0031;
    --primary-blue: #101c79;
    --primary-white: #ffffff;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f8f9fa;
    color: #222;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background: var(--primary-white);
    color: var(--primary-blue);
    padding: 1rem 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary-blue);
    margin: 5px 0;
    transition: 0.3s;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        z-index: 1000;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: var(--primary-white);
        flex-direction: column;
        padding: 80px 2rem;
        transition: 0.3s;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    }

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

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 0;
    }

    /* Mobile menu button animation */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

.nav-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-red);
}

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

.contact-link {
    background-color: var(--primary-red);
    color: var(--primary-white);
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.contact-link:hover {
    background-color: #a60029;
    color: var(--primary-white);
}

.contact-link:after {
    display: none;
}

    .header-content {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }
    .header-logo {
        height: 80px;
        width: auto;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    }
    .cta-button {
        background-color: var(--primary-red);
        color: var(--primary-white);
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .cta-button:hover {
        background-color: #d4003a;
    }
    main {
      flex: 1;
      padding: 2rem 1rem;
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }
    main p {
      font-size: 1.2rem;
      line-height: 1.6;
    }
    section.projects {
      margin-top: 2rem;
    }
    section.projects h2 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }
    section.projects ul {
      list-style: none;
      padding: 0;
    }
    section.projects li {
      margin: 0.5rem 0;
      font-weight: bold;
    }
    footer {
      background: #222;
      color: #ccc;
      text-align: center;
      padding: 1rem;
      font-size: 0.9rem;
    }

.hero-section {
    padding: 4rem 0;
    text-align: center;
    background-color: var(--primary-white);
    border-bottom: 1px solid #eee;
}

.hero-section h1 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-section p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #444;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.mission-details {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.mission-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 2rem;
}

.mission-card {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.mission-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mission-card p {
    color: #666;
    line-height: 1.6;
}

.projects {
    padding: 4rem 0;
    background-color: var(--primary-white);
}

.projects h2 {
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.projects ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.projects li {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    color: #444;
    text-align: center;
    transition: transform 0.3s ease;
}

.projects li:hover {
    transform: translateY(-3px);
}

/* Footer styles */
footer {
    background-color: var(--primary-blue);
    color: var(--primary-white);
    padding: 2rem 1rem;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-link {
    color: var(--primary-white);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    text-decoration: none; /* Remove underlines */
}

.social-link:hover {
    color: var(--primary-red);
    background-color: var(--primary-white);
    transform: translateY(-3px);
}

/* Responsive Content Sections */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 1rem;
    }

    .hero-section h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-section p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .mission-content {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .mission-card {
        margin-bottom: 1rem;
    }

    .projects {
        padding: 2rem 1rem;
    }

    .projects ul {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
}

/* Small screen adjustments */
@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .mission-card h3 {
        font-size: 1.3rem;
    }

    .projects h2 {
        font-size: 1.6rem;
    }
}