body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #0a0f1a;
    color: #e6e6e6;
}

h1, h2 {
    font-weight: 700;
    letter-spacing: 1px;
}

.hero {
    height: 100vh;
    background: linear-gradient(135deg, #0bb4ff, #004e92, #ff4e00, #ff0000);
    background-size: 300% 300%;
    animation: gradientShift 12s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content h1 {
    font-size: 4rem;
    margin: 0;
}

.hero-content p {
    font-size: 1.3rem;
    margin: 10px 0 20px;
}

.cta {
    padding: 12px 28px;
    background: #fff;
    color: #000;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.cta:hover {
    background: #ff4e00;
    color: #fff;
}

.about {
    padding: 80px 10%;
    background: #0f1624;
}

.gallery {
    padding: 80px 10%;
}

.gallery .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.gallery .item {
    background: #1b2333;
    height: 180px;
    border-radius: 10px;
    transition: 0.3s;
}

.gallery .item:hover {
    background: #ff4e00;
}

.contact {
    padding: 80px 10%;
    background: #0f1624;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
}

.contact input,
.contact textarea {
    padding: 12px;
    border-radius: 6px;
    border: none;
    background: #1b2333;
    color: #fff;
}

.contact button {
    padding: 12px;
    background: #ff4e00;
    border: none;
    color: #fff;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
}

footer {
    text-align: center;
    padding: 20px;
    background: #0a0f1a;
}
.help-list {
    margin-top: 1rem;
    padding-left: 1.2rem;
    line-height: 1.6;
}

.help-list li {
    margin-bottom: 0.5rem;
}
