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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    background-color: #e8e6e1;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
    display: block;
    margin-bottom: 8px;
}

.nav-link:hover {
    opacity: 0.6;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.logo-container {
    margin-bottom: 60px;
}

.logo {
    width: 280px;
    height: auto;
}

.description {
    max-width: 500px;
    text-align: center;
}

.description p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.footer {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-left {
    font-size: 13px;
    color: #666;
    max-width: 400px;
    text-align: left;
}

.footer-left p {
    margin: 0;
}

.footer-right {
    font-size: 13px;
    color: #666;
    text-align: right;
}

@media (max-width: 768px) {
    .logo {
        width: 220px;
    }
    
    .footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
