/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #ffd700;
}

.hero .subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.highlight-text {
    color: #ffd700;
    margin-top: 20px;
    font-size: 1.1em;
}

/* CTA Button */
.cta-button {
    background-color: #ffd700;
    color: #1a1a1a;
    border: none;
    padding: 15px 40px;
    font-size: 1.2em;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

/* How It Works section */
.how-it-works {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step i {
    font-size: 2em;
    color: #1a1a1a;
    margin-bottom: 20px;
}

/* Features section */
.features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    text-align: center;
    padding: 30px;
}

.feature i {
    font-size: 2.5em;
    color: #ffd700;
    margin-bottom: 20px;
}

/* CTA section */
.cta {
    background-color: #1a1a1a;
    color: white;
    padding: 80px 0;
    text-align: center;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.disclaimer {
    font-size: 0.8em;
    margin-top: 10px;
    color: #999;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2em;
    }
    
    .hero h2 {
        font-size: 1.5em;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
} 