/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    line-height: 1.6;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    background-color: #400090;
    color: white;
    padding: 15px 20px;
    text-align: center;
}

header .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

header .logo {
    font-size: 28px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
}

main {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    color: white;
    font-size: 48px;
    text-align: center;
    margin-bottom: 10px;
}

h2 {
    font-size: 24px;
    color: #333;
    margin-top: 20px;
}

p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

ul {
    margin-left: 20px;
    list-style-type: disc;
}

footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

footer .footer-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

footer .footer-link {
    color: white;
    font-size: 14px;
    text-transform: uppercase;
}

footer .footer-link:hover {
    text-decoration: underline;

}

.hero {
    background-color: #4CAF50; /* Green background */
    padding: 60px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    color: white;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    color: white;
}

.get-started-btn {
    background-color: #FF5B00;
    color: white;
    padding: 10px 20px;
    border: none;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

.get-started-btn:hover {
    background-color: #FF4500;
}
