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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: #FDFDFD;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.landing-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.landing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: #FDFDFD;
    border-bottom: 1px solid #E5E5E5;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #3B82F6;
    letter-spacing: 1px;
}

.get-started-btn {
    background-color: #3B82F6;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background-color 0.2s;
}

.get-started-btn:hover {
    background-color: #2563EB;
}

.landing-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.hero-section {
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.hero-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1F2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1rem;
    color: #6B7280;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.stat-box {
    padding: 1rem;
    background-color: #F9FAFB;
    border-radius: 12px;
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #6B7280;
    font-weight: 500;
}

@media (max-width: 480px) {
    .landing-header {
        padding: 0.75rem 1rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .get-started-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .stat-box {
        min-width: 100%;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}