:root {
    --brand-yellow: #facc15; /* yellow-400 */
    --brand-dark: #1f2937;  /* gray-800 */
}

body {
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.text-brand-yellow {
    color: var(--brand-yellow);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    background-color: var(--brand-yellow);
    color: var(--brand-dark);
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid var(--brand-yellow);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease-in-out;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(250, 204, 21, 0.4), 0 4px 6px -2px rgba(250, 204, 21, 0.2);
}

.seo-text {
    font-size: 1px;
    line-height: 1;
    color: var(--brand-dark); /* Same as footer background */
    opacity: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    position: absolute;
}
