body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8; /* Light gray background */
    color: #333;
    line-height: 1.7;
}

header {
    background-color: #fff;
    color: #333;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.logo {
    font-size: 1.8em;
    font-weight: bold;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #007bff; /* Example hover color */
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 40px;
    background-color: #fff;
}

.hero-left {
    flex: 1;
    padding-right: 40px;
}

.hero-right {
    flex: 1;
    padding-left: 40px;
}

.hero h1 {
    font-size: 3.5em;
    color: #222;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero .tagline {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
}

.hero-buttons a {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.hero-buttons a.primary {
    background-color: #222;
    color: #fff;
    margin-right: 15px;
}

.hero-buttons a.secondary {
    background-color: transparent;
    color: #222;
    border: 1px solid #222;
}

.hero-buttons a.primary:hover {
    background-color: #007bff;
}

.hero-buttons a.secondary:hover {
    background-color: #eee;
}

section {
    padding: 60px 40px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

section h2 {
    font-size: 2.2em;
    color: #222;
    margin-top: 0;
    margin-bottom: 25px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
}

footer {
    text-align: center;
    padding: 30px 0;
    background-color: #333;
    color: #fff;
    font-size: 0.9em;
}