/* General Reset */
body, h1, h2, p, ul, li, a, img {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Global Settings */
body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f8f9fa;
    line-height: 1.5;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    background-color: #007bff;
    color: white;
}

header .logo img {
    max-width: 150px;
    height: 30px;
}

header nav ul {
    display: flex;
    list-style: none;
    gap: 50px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

header nav ul li a:hover {
    text-decoration: underline;
}

header nav ul li .cta-button {
    background-color: #ffb400;
    padding: 5px 15px;
    border-radius: 20px;
    color: white;
    font-weight: bold;
}

/* Hamburger Menu Button */
.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header {
        flex-wrap: wrap;
    }

    header .menu-toggle {
        display: block;
    }

    header nav ul {
        flex-direction: column;
        display: none;
        gap: 10px;
        width: 100%;
        background-color: #007bff;
        padding: 10px 0;
        text-align: center;
    }

    header nav ul.show {
        display: flex;
    }

    header nav ul li {
        margin: 5px 0;
    }
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 50px 20px;
    background-color: #0056b3;
    color: white;
}

.hero h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero .cta-button {
    display: inline-block;
    background-color: #ffb400;
    padding: 10px 20px;
    border-radius: 20px;
    color: white;
    font-size: 16px;
    text-decoration: none;
}

.hero .cta-button:hover {
    background-color: #e09c00;
}


.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.card {
    max-width: 150px;
    text-align: center;
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: white;
    font-size: 14px;
}
