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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header styles */
header {
    padding: 2rem 0;
    text-align: center;
}

.logo h1 {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: #333;
    margin-bottom: 0.3rem;
}

.tagline-logo {
    font-size: 0.8rem;
    font-weight: 300;
    color: #666;
    letter-spacing: 0.5px;
    font-style: italic;
}

/* Main content styles */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.tagline {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Footer styles */
footer {
    padding: 1rem 0;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive styles */
@media (max-width: 768px) {
    .tagline {
        font-size: 2.5rem;
    }
    
    .logo h1 {
        font-size: 0.9rem;
    }
}
