/* SeymourCore Main Stylesheet */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 1rem;
    text-align: center;
}

h1 { 
    font-size: 2.5rem; 
    margin-bottom: 1rem; 
    font-weight: 700; 
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #667eea;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #667eea;
}

.tagline { 
    font-size: 1.25rem; 
    opacity: 0.9; 
    margin-bottom: 2rem; 
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 2rem 1rem; 
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.feature h3 { 
    margin-bottom: 0.5rem; 
    color: #667eea; 
}

.stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat { 
    text-align: center; 
}

.stat-number { 
    font-size: 2rem; 
    font-weight: bold; 
    color: #667eea; 
}

.stat-label { 
    color: #666; 
}

.cta {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.2s;
}

.cta:hover { 
    transform: translateY(-2px); 
}

.links {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
}

.links a {
    color: #667eea;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 500;
}

.links a:hover { 
    text-decoration: underline; 
}

/* Additional utility classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

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