body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #f8f9fa;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

nav ul li a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}

.hero {
    text-align: center;
    padding: 5rem 2rem;
    background: url('./assets/wcn-blue2-bg.png') no-repeat center center/cover;
    color: white;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-logo {
    display: block;
    margin: 0 auto 1rem;
    width: 600px; /* Increased size */
}

.hero h1 {
    font-size: 2.0rem;
    margin-bottom: 0.1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
}

.benefits {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #121212; /* Dark background */
    color: #c0c0c0; /* Light text color */
}

.benefits h2 {
    color: #FFD700; /* Gold color for heading */
    margin-bottom: 2rem;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(2, 200px);
    grid-auto-rows: auto;
    grid-gap: 1rem;
}

.benefit-card {
    background: #1f1f1f; /* Dark card background */
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    max-width: 550px; /* Limit the width of each card */
    width: 100%; /* Ensure cards take full width of their grid cell */
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card h3 {
    color: #FFD700; /* Gold color for titles */
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.benefit-card p {
    color: #c0c0c0; /* Light color for text */
    font-size: 1rem;
}



.cards {
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    grid-gap: 2rem;
    }

.card {
        border: 2px solid #e7e7e7;
        border-radius: 4px;
        padding: .5rem;
        width: 100%; /* Ensure cards take full width of their grid cell */
    }

footer {
    text-align: center;
    padding: 1rem;
    background-color: #f8f9fa;
    border-top: 1px solid #ddd;
}


/* Media Query for smaller screens */
@media (max-width: 768px) {
    .benefits-container {
        grid-template-columns: 1fr; /* Switch to one column on smaller screens */
    }
}
