.troon-project-cta {
    background: #f7f4ef;
    padding: 60px 40px;
    margin-top: 70px;

    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

/* INNER LAYOUT */
.troon-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* LEFT SIDE TEXT */
.troon-cta-text {
    max-width: 600px;
}

.troon-cta-text h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.troon-cta-text p {
    margin: 0 0 10px 0;
    line-height: 1.5;
    opacity: 0.85;
}

/* SUBTEXT */
.troon-cta-subtext {
    font-size: 13px;
    opacity: 0.6;
    margin-top: 5px;
}

/* RIGHT SIDE */
.troon-cta-action {
    display: flex;
    align-items: center;
}

/* PILL BUTTON */
.troon-project-cta a.troon-cta-button {
    display: inline-block;
    padding: 14px 34px;

    background: #222;
    color: #fff;
    text-decoration: none;

    border-radius: 999px;
    -webkit-border-radius: 999px;

    box-shadow: 0 6px 18px rgba(0,0,0,0.12);

    transition: all 0.2s ease;
    white-space: nowrap;
}

.troon-project-cta a.troon-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .troon-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .troon-cta-action {
        margin-top: 10px;
    }
}