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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    color: #000000;
    min-height: 100vh;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.icons-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.food-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.title {
    font-size: 2rem;
    font-weight: 300;
    color: #000000;
    text-align: center;
    letter-spacing: 0.5px;
}

.footer {
    width: 100%;
    border-top: 1px solid #e0e0e0;
    padding: 12px 0 28px;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.company-name {
    font-size: 0.875rem;
    color: #000000;
    font-weight: 300;
}

.privacy-link {
    font-size: 0.875rem;
    color: #000000;
    text-decoration: none;
    font-weight: 300;
    transition: opacity 0.2s ease;
}

.privacy-link:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    .food-icon {
        width: 38px;
        height: 38px;
    }
    
    .title {
        font-size: 1.5rem;
    }
    
    .footer-content {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 8px;
    }
}