/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0070f3;    /* Standard blue */
    --secondary-color: #0366d6;   /* Slightly darker blue */
    --text-color: #333333;
    --light-text: #718096;
    --bg-color: #ffffff;
    --accent-color: #f7fafc;     /* Very light blue/grey */
    --border-color: #e2e8f0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    background-image: linear-gradient(135deg, #ffffff 0%, var(--accent-color) 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header styles */
header {
    padding: 2rem 0;
    display: flex;
    justify-content: center;
}

.logo img {
    max-width: 300px;
    height: auto;
}

/* Main content styles */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.content {
    text-align: center;
    max-width: 800px;
    width: 100%;
    animation: fadeIn 0.8s ease-in-out;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Footer styles */
footer {
    margin-top: auto;
    padding: 2rem 0;
    text-align: center;
}

footer p {
    color: var(--light-text);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Responsive styles */
@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }
    
    .logo img {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }
    
    .logo img {
        max-width: 150px;
    }
} 