/* Reset and Basic Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: #400090; /* Dark Violet */
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 32px;
    font-weight: bold;
}

nav .nav-links a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
}

nav .nav-links a:hover {
    text-decoration: underline;
}

.search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-bar input {
    padding: 10px;
    width: 200px;
    margin-right: 10px;
    border: none;
    border-radius: 5px;
}

.search-bar button {
    padding: 10px 20px;
    background-color: #ffcc00;
    color: #400090;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.search-bar button:hover {
    background-color: #e6b800;
}

/* Hero Section */
.hero {
    background-color: #400090; /* Dark Violet */
    color: white;
    padding: 40px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.btn-get-started {
    background-color: red;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.btn-get-started:hover {
    background-color: #e60000;
}

/* Main Content */
main {
    padding: 40px;
}

.content h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 10px;
}

.content ul {
    margin-left: 20px;
}

.content li {
    margin-bottom: 10px;
}

/* CTA Section */
.cta {
    background-color: #400090;
    color: white;
    text-align: center;
    padding: 40px;
    margin-top: 40px;
}

.cta h2 {
    font-size: 2.5em;
}

.cta p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.cta .btn-get-started {
    background-color: #ffcc00;
    color: #400090;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.cta .btn-get-started:hover {
    background-color: #e6b800;
}

/* Footer */
footer {
    background-color: #000000; /* Jet Black */
    color: white;
    text-align: center;
    padding: 20px;
}
