
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #111;
    color: #fff;
}
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #000;
}
.navbar .logo {
    font-weight: bold;
    font-size: 1.5rem;
}
.navbar nav a {
    margin-left: 20px;
    color: #fff;
    text-decoration: none;
}
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-text {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}
.hero-text h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.buttons .btn {
    background-color: #000;
    color: #fff;
    padding: 15px 30px;
    margin: 10px;
    text-decoration: none;
    border: 2px solid #fff;
    display: inline-block;
    transition: background 0.3s;
}
.buttons .btn:hover {
    background-color: #fff;
    color: #000;
}
.footer-banner {
    text-align: center;
    padding: 20px;
    background-color: #111;
    font-size: 1.2rem;
    color: #e63946;
}
.faq {
    padding: 40px 20px;
    max-width: 800px;
    margin: auto;
}
.faq h2 {
    text-align: center;
    margin-bottom: 30px;
}
.faq-entry {
    margin-bottom: 20px;
}
.faq-entry h3 {
    font-size: 1.2rem;
    color: #fff;
}
.faq-entry p {
    color: #ccc;
}
