body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}
.hero {
    position: relative;
    text-align: center;
    color: white;
}
.hero-image {
    width: 100%;
    height: auto;
}
.hero-text {
    position: absolute;
    top: 5%;
    left: 47%;
    transform: translate(-50%, -10%);
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
}
.cta-buttons {
    margin-top: 0;
}
.btn {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background: #0073e6;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
section {
    padding: 20px;
    background: white;
    margin: 10px;
    border-radius: 10px;
}
footer {
    text-align: center;
    padding: 10px;
    background: #333;
    color: white;
}
