:root {
    --bg-color: #F0F4F8;
    --text-color: #1F2937;
    --accent-color: #3B82F6;
    --secondary-color: #10B981;
}

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

body {
    font-family: 'Noto Sans', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 1rem;
}

.container {
    max-width: 600px;
    width: 100%;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

header p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.features {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature {
    background-color: #f4f4f4;
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: scale(1.03);
}

.feature h2 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.cta button {
    background-color: #000;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta button:hover {
    background-color: #333;
}

.disclaimer {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #666;
}

@media (max-width: 600px) {
    .features {
        grid-template-columns: 1fr;
    }
}

