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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background: #f4f4f4;
    color: #333;
}

/* Top Bar */
.topbar {
    background-color: #333;
    color: #fff;
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.navbar ul {
    list-style: none;
    display: flex;
}

.navbar ul li {
    margin: 0 20px;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #f0a500;
}

/* Main Content */
main {
    padding: 40px 20px;
}

.hero {
    text-align: center;
    background: #007bff;
    color: #fff;
    padding: 50px 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 2.5em;
}

.hero h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.hero p {
    margin-bottom: 30px;
}

.cta-button {
    background-color: #f0a500;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    transition: background-color 0.3s;
}

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

/* Features Section */
.features {
    text-align: center;
}

.features h2 {
    margin-bottom: 30px;
    font-size: 2em;
}

.feature-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: inline-block;
    width: calc(33% - 40px);
}

.feature-card h4 {
    margin-bottom: 10px;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}