/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    background-color: #000;
    color: #fff;
}

/* Services Section */
.services-section {
    padding: 5rem 1rem;
    background-color: #000;
}

.services-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 3rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

/* Responsive grid */
@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Service Card */
.service-card {
    background: transparent;
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 0, 0.3);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.3);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: rgb(0, 255, 65);
}

.service-card p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* CTA Button */
.cta-button {
    padding: 1rem 2rem;
    background: #00ff00;
    color: #000000;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    width: 100%;
    text-align: center;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #00ff00;
}

.service-card:hover .cta-button {
    transform: scale(1.05);
}

/* Additional responsive adjustments */
@media (max-width: 767px) {
    .services-section {
        padding: 3rem 1rem;
    }
    
    .services-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}