.cta-button {
    display: inline-block;
    background-color: var(--highlight-color);
    color: white;
    padding: 12px 28px;
    border-radius: 980px;
    font-weight: 500;
    font-size: 17px;
    margin: 16px 8px;
    transition: all 0.2s;
}

.cta-button:hover {
    transform: scale(1.02);
    opacity: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-ctas {
    display: flex;
    gap: 16px;
}

.hero-cta {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
    border: 1px solid var(--highlight-color);
}

.hero-cta:first-child {
    background-color: var(--highlight-color);
    color: white;
}

.hero-cta:last-child {
    background-color: transparent;
    color: var(--highlight-color);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}