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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #f0f0f0;
    background-color: #0a0a0a;
}

/* Header and navigation */
header {
    background-color: #000;
    color: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
}

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

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ff9900;
}

/* Hero section */
.hero {
    text-align: center;
    padding: 5rem 2rem;
    background-color: #0a0a0a;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 153, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero button {
    padding: 1rem 2rem;
    background-color: transparent;
    border: 2px solid #ff9900;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    color: #ff9900;
    transition: all 0.3s ease;
    font-weight: bold;
}

.hero button:hover {
    background-color: #ff9900;
    color: #000;
}

/* Features section */
.features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 2rem;
    flex-wrap: wrap;
    background-color: #0a0a0a;
}

.feature {
    background-color: #111;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #333;
    flex-basis: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 153, 0, 0.1);
    border-color: #ff9900;
}

.feature h2 {
    color: #ff9900;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.feature p {
    color: #ccc;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: #000;
    color: #666;
    margin-top: auto;
    border-top: 1px solid #333;
}

/* Responsive design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature {
        flex-basis: 100%;
    }
}

/* Accent color for links and highlights */
a {
    color: #ff9900;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}