/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global styles */
body {
    font-family: 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa; /* Light grey background */
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header styles */
header {
    background-color: #343a40; /* Dark grey header */
    padding: 20px 0;
}

header h1 {
    color: #fff;
    font-size: 36px;
    text-align: center;
    margin-bottom: 10px;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    margin-top: 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #007BFF; /* Blue hover effect */
    color: white;
}

/* Hero section styles */
.hero {
    background: linear-gradient(45deg, #007BFF, #0056b3); /* Blue gradient background */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    border-bottom: 4px solid #fff;
}

.hero h2 {
    font-size: 50px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background-color: #fff;
    color: #333;
    padding: 12px 25px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #007BFF; /* Blue on hover */
    color: #fff;
}

/* About section styles */
.about {
    background: #fff;
    padding: 60px 0;
    text-align: center;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #333;
}

.about p {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer styles */
footer {
    background-color: #343a40; /* Dark grey footer */
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 60px;
}

footer p {
    font-size: 16px;
}

/* Responsive design */
@media (max-width: 768px) {
    header h1 {
        font-size: 28px;
    }

    .hero h2 {
        font-size: 40px;
    }

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

    .cta-button {
        font-size: 16px;
        padding: 10px 20px;
    }

    .about h2 {
        font-size: 30px;
    }

    .about p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    header h1 {
        font-size: 24px;
    }

    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .cta-button {
        font-size: 14px;
        padding: 8px 16px;
    }

    .about h2 {
        font-size: 24px;
    }

    .about p {
        font-size: 14px;
    }
}
