body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f8f8f8;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
header a {
    text-decoration: none;
    color: #333;
    margin: 0 10px;
    font-weight: bold;
}
header a:hover {
    color: #007BFF;
}
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 40px;
    background-color: #fff;
}
.hero .text {
    flex: 1;
    padding-right: 20px;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
.hero .cta {
    background-color: #28a745;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
}
.hero .cta:hover {
    background-color: #218838;
}
.hero .image {
    flex: 1;
    text-align: center;
}
.hero .image img {
    max-width: 100%;
    height: auto;
}
footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: #777;
}
footer a {
    color: #007BFF;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}