body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #1a1a2e; /* Dark background */
    color: #e0e0e0; /* Light grey text */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
    background-image: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><defs><linearGradient id="g" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" stop-color="%231a1a2e"/><stop offset="100%" stop-color="%230f0f1d"/></linearGradient></defs><rect x="0" y="0" width="100" height="100" fill="url(%23g)"/><circle cx="50" cy="50" r="40" fill="rgba(0,191,255,0.1)"/><circle cx="50" cy="50" r="30" fill="rgba(0,191,255,0.05)"/></svg>');
    background-size: cover;
    background-position: center;
}

.container {
    text-align: center;
    max-width: 900px;
    width: 100%;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.4); /* Slightly transparent dark overlay */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

header h1 {
    font-size: 3.5em;
    color: #00bfff; /* Bright blue for the main title */
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.6);
}

header p {
    font-size: 1.2em;
    color: #a0a0a0;
    margin-top: 0;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(0, 191, 255, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    background-color: rgba(0, 191, 255, 0.1);
    border-color: rgba(0, 191, 255, 0.5);
}

.service-card i {
    font-size: 3em;
    color: #00bfff;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5em;
    color: #e0e0e0;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.95em;
    color: #a0a0a0;
    line-height: 1.6;
}

footer p {
    font-size: 1em;
    color: #a0a0a0;
    margin-bottom: 15px;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    color: #00bfff;
    font-size: 1.8em;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5em;
    }
    header p {
        font-size: 1em;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        padding: 25px;
    }
    .service-card i {
        font-size: 2.5em;
    }
    .service-card h3 {
        font-size: 1.3em;
    }
    footer p {
        font-size: 0.9em;
    }
    .social-links a {
        font-size: 1.5em;
    }
}