body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    background-color: #f3f4f6;
    color: #1f2937;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    max-height: 90vh;
    padding: 2rem;
}

.container {
    max-width: 720px;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    text-align: center;
}

.logo {
    font-weight: 800;
    font-size: 2.5rem;
    color: #3b82f6;
}

.tagline {
    font-size: 1.25rem;
    color: #4b5563;
    margin-top: 0.5rem;
}

.features {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature {
    background-color: #f9fafb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.feature .icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.feature h2 {
    margin: 0.5rem 0;
    color: #1f2937;
    font-size: 1.25rem;
}

.feature p {
    color: #6b7280;
    font-size: 1rem;
}

.cta {
    margin-top: 2rem;
}

.install-button {
    background-color: #3b82f6;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border: none;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.install-button:hover {
    background-color: #2563eb;
}

footer {
    margin-top: 2.5rem;
    font-size: 0.875rem;
    color: #9ca3af;
}