* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
.hero {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0;
    border-bottom: 2px solid #00ff00;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 0 0 10px #00ff00;
}

.subtitle {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 20px;
    font-style: italic;
}

.stats {
    font-size: 1rem;
    color: #00ff00;
    font-weight: bold;
}

/* Section Styles */
section {
    margin-bottom: 40px;
    padding: 30px;
    background: #111;
    border: 1px solid #00ff00;
    border-radius: 5px;
}

h2 {
    color: #00ff00;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-shadow: 0 0 5px #00ff00;
    text-align: center;
}

h3 {
    color: #00ff00;
    font-size: 1.3rem;
    margin-bottom: 15px;
    margin-top: 25px;
}

/* About Section */
.about p {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.features div {
    color: #00ff00;
    font-size: 1rem;
}

/* Services Section */
.service-category {
    margin-bottom: 30px;
}

.service-list {
    margin-left: 20px;
}

.service-list div {
    color: #fff;
    margin-bottom: 8px;
    font-size: 1rem;
}

.note {
    color: #00ff00;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
    font-size: 1.1rem;
}

/* Payment Section */
.payment-methods {
    margin-bottom: 20px;
}

.payment-methods div,
.payment-terms div {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-item {
    margin-bottom: 20px;
    padding: 15px;
    background: #222;
    border-left: 4px solid #00ff00;
}

.question {
    color: #00ff00;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.answer {
    color: #fff;
    font-size: 1rem;
}

/* Contact Section */
.contact-info {
    margin-bottom: 20px;
}

.contact-info div {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-notes {
    margin-bottom: 20px;
}

.contact-notes div {
    color: #00ff00;
    margin-bottom: 8px;
    font-size: 1rem;
}

.tagline {
    text-align: center;
    color: #00ff00;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 0 0 5px #00ff00;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 20px;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}