* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

header {
    background-color: #121212;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

body {
    background: linear-gradient(rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.7)), url('img/background.jpg') center/cover no-repeat fixed;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00cc99;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #00cc99;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
    background: linear-gradient(180deg, rgba(0, 204, 153, 0.1), #1a1a1a);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
    color: #cccccc;
}

.cta-button {
    background-color: #00cc99;
    color: #121212;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #00b386;
}

.features, .content {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.features h2, .content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.feature-card {
    background-color: #242424;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #cccccc;
}

footer {
    background-color: #121212;
    padding: 1rem 2rem;
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    color: #cccccc;
    z-index: 1000;
}

footer p {
    font-size: 0.9rem;
    margin: 0;
}

footer a {
    color: #00cc99;
    text-decoration: none;
    margin: 0 0.5rem;
}

footer a:hover {
    color: #00b386;
}

footer i {
    margin-right: 0.3rem; /* Space between icon and text */
    font-size: 1rem; /* Slightly larger icon for visibility */
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    nav ul {
        gap: 1rem;
    }
      footer {
        padding: 1rem;
        font-size: 0.8rem;
    }

    footer a {
        margin: 0 0.3rem;
    }

    footer i {
        font-size: 0.9rem; /* Smaller icon on mobile */
    }
}