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

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

/* Main page styles */
.main-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.logo-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.giant-logo {
    width: min(90vw, 800px);
    height: auto;
    max-width: 100%;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content pages styles */
.page-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: white;
}

header {
    padding: 1rem 0 2rem;
}

.back-link {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #1a1a1a;
}

.content {
    flex: 1;
}

.content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.last-updated {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.content p {
    margin-bottom: 1rem;
    color: #444;
}

.content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.content li {
    margin-bottom: 0.5rem;
    color: #444;
}

section {
    margin-bottom: 2rem;
}

/* Footer navigation */
.footer-nav {
    padding: 2rem 0;
    text-align: center;
}

.footer-nav a {
    color: #666;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #1a1a1a;
}

.separator {
    color: #ccc;
    margin: 0 0.5rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .content h1 {
        font-size: 2rem;
    }

    .content h2 {
        font-size: 1.3rem;
    }

    .page-container {
        padding: 1rem;
    }
}
