* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: white;
    text-decoration: none;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 6rem;
    background-color: #333;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.main-nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-nav-list {
    list-style-type: none;
}

.main-nav-link {
    padding: 0 1.5rem;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-line {
    height: 3px;
    width: 25px;
    background-color: green;
    margin: 5px 0px;
}

.mobile-menu-btn {
    position: absolute;
    top: 32px;
    right: 20px;
    cursor: pointer;
    z-index: 2;
    display: none;
}

#hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 5rem;
    background: rgba(0, 76, 153, 0.8);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.default-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 5rem 6rem;
    width: 100%;
}

.alternate {
    flex-direction: row-reverse;
}

.gray {
    background-color: #e2e1e1;
}

.section-image {
    flex: 1;
}

.section-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

.default-container-text {
    flex: 1;
    max-width: none;
    margin: 0;
    padding: 0;
}

.default-container-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 1rem;
}

.default-container-text h2 {
    margin-bottom: 1rem;
}

.default-container-text p {
    font-size: 1.05rem;
    line-height: 1.85;
}

.tab-space {
    padding-left: 3rem;
}

.default-container--no-image {
    justify-content: center;
}

.default-container--no-image .default-container-text {
    max-width: 860px;
    width: 100%;
}

.card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.card {
    background-color: #fff;
    border: 1px solid #d0d0d0;
    border-left: 4px solid #333;
    border-radius: 6px;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #222;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    flex: 1 1 auto;
    min-width: 180px;
    max-width: calc(33% - 1rem);
}

.gray .card {
    background-color: #f9f9f9;
}

.card a {
    color: #004c99;
    text-decoration: underline;
}

/* Partnerships Page */

.partnerships-section {
    padding: 5rem 6rem;
}

.partnerships-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    letter-spacing: -0.5px;
    margin-bottom: 3.5rem;
}

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

.partner-card {
    background-color: #fff;
    border: 1px solid #d0d0d0;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem 2rem;
    gap: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.partner-card-logo {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-card-logo img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}

.partner-card-divider {
    width: 40px;
    height: 2px;
    background-color: #d0d0d0;
    border-radius: 1px;
}

a.partner-card {
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.partner-card-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #222;
    text-align: center;
    letter-spacing: 0.3px;
}

/* Tulip Partner Page */

.tulip-section {
    padding: 5rem 6rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tulip-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
}

.tulip-section p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #222;
    max-width: 860px;
}

.tulip-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

#hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#hero-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/*



Media Queries



*/

@media(max-width: 900px) {

    .mobile-menu-btn {
        display: block;
    }

    .main-nav {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        padding: 2rem 4rem;
        opacity: .9;
        width: 70%;
        height: 100%;
        transform: translateX(-900px);
        transition: transform .5s ease-in-out;
    }

    .main-nav-menu {
        display: block;
    }

    .logo {
        padding-bottom: 20px;
    }

    .main-nav-list {
        list-style: none;
        padding: 10px 0px;
    }

    .main-nav.show {
        transform: translateX(-20px);
    }

    .main-nav-link {
        padding: 0;
    }

    .default-container,
    .alternate {
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 2rem;
    }

    .section-image img {
        height: 250px;
    }

    .card {
        max-width: 100%;
        flex: 1 1 calc(50% - 0.5rem);
    }

    .partnerships-section {
        padding: 3rem 2rem;
    }

    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}
@media(max-width: 900px) {
    .tulip-section {
        padding: 3rem 2rem;
    }

    .tulip-section img {
        height: 250px;
    }
}