/* Simple Hero Banner CSS */

.hero-banner {
    position: relative;
    padding: 100px 20px;
    text-align: center;
    background-color: #333;
    background-size: cover;
    background-position: center;
    color: #fff;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-banner h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero-banner p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.hero-buttons .btn {
    padding: 10px 20px;
    background-color: #f0a500;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.hero-buttons .btn:hover {
    background-color: #d18f00;
}
