:root {
    --ge-blue: #005eb8;
    --ge-green: #23aa49;
    --wmsa-black: #222222;
    --light-gray: #f4f7f6;
    --text-dark: #333;
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--light-gray);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* .main-header {
    background-color: var(--wmsa-black);
    padding: 10px;
    text-align: center;
    width: 100%;
} */

.main-header {
    background-color: var(--wmsa-black);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Spreads elements out */
}

.gev-logo {
    height: 70px;
}

.wmsa-logo-div {
    flex: 1; /* Takes up available space in the middle */
    text-align: center;

    .wmsa-text
    {
        margin: 10px;
        color: whitesmoke;
    }
}

.spacer {
    width: 70px; /* Should match the width of your logo to balance the center */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        padding: 15px;
    }
    .spacer {
        display: none; /* Hide spacer on mobile */
    }
    .gev-logo {
        height: 50px;
        margin-bottom: 10px;
    }
}

/* .wmsa-text
{
    margin: 10px;
    color: whitesmoke;
}

.gev-logo
{
    position: absolute;
    height: 70px;
    left: 10px;
    top: 0px;
} */

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

.intro {
    text-align: center;
    margin-bottom: 40px;
}

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

.card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.btn {
    display: block;
    padding: 15px;
    margin: 10px 0;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    font-weight: bold;
}

.btn-supplier { background-color: var(--ge-green); }
.btn-internal { background-color: var(--ge-blue); }

.main-footer {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 50px;
}

.footer-links a {
    margin: 0 10px;
    color: var(--ge-blue);
    text-decoration: none;
}