/* yellow button */
.btn-primary {
    background-color: var(--color-sunflower-gold);
    border-radius: 50px;
    color: var(--color-text-dark);
    display: inline-block;
    font-weight: 700;
    padding: 14px 32px;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--color-accent-yellow);
    transform: translateY(-2px);
}

.section-header {
    margin-bottom: 40px;
    text-align: center;
}

.section-header h2 {
    color: var(--color-text-dark);
    font-size: 2.2rem;
    font-weight: 700;
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}