
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #0b0d1b;
    color: white;
    line-height: 1.6;
    text-align: center;
}

.hero {
    background: url('images/hero.jpg') center/cover no-repeat;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero .content {
    position: relative;
    z-index: 2;
}

h1 {
    font-size: 60px;
    letter-spacing: 3px;
    color: white;
}

.slogan {
    font-size: 22px;
    color: #f97316;
    margin: 20px 0;
}

.cta-button {
    background-color: #f97316;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #ea580c;
}

section {
    padding: 60px 20px;
}

.features ul {
    list-style: none;
    margin-top: 20px;
}

.features li {
    margin: 10px 0;
    font-size: 18px;
}

.gallery-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.gallery-row img {
    max-width: 400px;
    width: 100%;
    border-radius: 8px;
}

footer {
    background: #13162d;
    padding: 20px;
    font-size: 14px;
    color: #aaa;
}
