.wy-main-cta-section {
    background-color: var(--wy-color-forest);
}
.wy-main-cta-inner {
    max-width: var(--wy-content-max-width);
    margin: 0 auto;
    text-align: center;
}
.wy-main-cta-section .wy-overline {
    color: var(--wy-color-white);
    display: block;
    text-align: center;
    margin-bottom: 12px;
}
.wy-main-cta-section .wy-h2 {
    color: var(--wy-color-white);
    text-align: center;
    margin-bottom: 16px;
}
.wy-main-cta-text {
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}
.wy-main-cta-note {
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    margin: 1.5rem auto 0;
    text-align: center;
}
.wy-main-cta-link {
    margin-top: 2rem;
    text-align: center;
}
.wy-cta-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.wy-cta-btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 16px;
    line-height: 1em;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none !important;
    background: transparent;
    color: var(--wy-color-white) !important;
    border: 2px solid rgba(255,255,255,0.7);
    cursor: pointer;
    transition: background 0.2s;
}
.wy-cta-btn:hover {
    background: rgba(255,255,255,0.15);
    color: var(--wy-color-white) !important;
}
@media (max-width: 768px) {
    .wy-cta-btns {
        flex-direction: column;
        align-items: center;
    }
    .wy-cta-btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }
}
