




body {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    margin: 0;
    background: #000;
    color: #eaeaea;
    text-align: center;
}
header {
    background: #000;
    color: #38e102;
    padding: 2rem 0 1rem 0;
    text-align: center;
    border-bottom: 2px solid #222;
}
header img {
    margin-bottom: 1rem;
    max-width: 160px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
nav {
    background: #38e102;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
nav li {
    margin: 0 1.5rem;
}
nav a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    padding: 1rem 0.5rem;
    display: block;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
    text-align: center;
}
nav a:hover {
    background: #000;
    color: #38e102;
}
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}
main {
    padding: 2rem 0;
    text-align: center;
}
.feature {
    background: #111;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(56,225,2,0.07);
    margin: 2rem auto;
    padding: 2rem;
    border: 1px solid #222;
    max-width: 700px;
    text-align: center;
}
#services ul {
    padding-left: 0;
    display: inline-block;
    text-align: left;
    margin: 0 auto;
}
#contact {
    background: #111;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(56,225,2,0.07);
    margin: 2rem auto;
    padding: 2rem;
    border: 1px solid #222;
    max-width: 700px;
    text-align: center;
}
#contactForm {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
    align-items: center;
}
#contactForm input, #contactForm textarea {
    padding: 0.75rem;
    border: 1px solid #38e102;
    border-radius: 6px;
    font-size: 1rem;
    background: #000;
    color: #eaeaea;
    text-align: center;
}
#contactForm input:focus, #contactForm textarea:focus {
    outline: none;
    border-color: #38e102;
}
#contactForm button {
    background: #38e102;
    color: #000;
    border: none;
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(56,225,2,0.07);
    transition: background 0.2s;
    text-align: center;
}
#contactForm button:hover {
    background: #2bb100;
}
#formResponse {
    margin-top: 1rem;
    color: #38e102;
    font-weight: 500;
    text-align: center;
}
.contact-link {
    display: inline-block;
    background: #38e102;
    color: #000;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    box-shadow: 0 2px 8px rgba(56,225,2,0.07);
    transition: background 0.2s, color 0.2s;
    text-align: center;
}
.contact-link:hover {
    background: #2bb100;
    color: #fff;
}
footer {
    background: #000;
    color: #eaeaea;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
    border-top: 2px solid #222;
    font-size: 1rem;
}
footer a {
    color: #38e102;
    text-decoration: underline;
    font-weight: 500;
}
@media (max-width: 600px) {
    nav ul {
        flex-direction: column;
    }
    .feature, #contact {
        padding: 1rem;
        max-width: 98vw;
    }
}
