/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, #222831, #393E46);
    color: #EEEEEE;
    text-align: center;
    cursor: url('buttons/crosshair.png') 128 128, auto;
    overflow-x: hidden;
}

/* Global Container Styling */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Hero Section */
.hero {
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 2rem;
    transition: background 0.5s ease-in-out;
    background: linear-gradient(135deg, #00ADB5, #222831);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #00FFF5;
    text-transform: uppercase;
    text-shadow: 2px 2px 15px rgba(0, 255, 245, 0.5);
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Content Section */
.content {
    padding: 3rem 0;
}

.features ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.features li {
    font-size: 1.2rem;
    background: rgba(0, 173, 181, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.features li:hover {
    transform: scale(1.05);
    background: rgba(0, 173, 181, 0.3);
}

/* CTA Button */
.cta {
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #222831;
    background: #00FFF5;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 245, 0.3);
    cursor: url('assets/custom-click.png'), pointer;
}

.cta-button:hover {
    background: #00ADB5;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 173, 181, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        height: 50vh;
        padding: 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .features ul {
        flex-direction: column;
        align-items: center;
    }
}