/* Generic Button Styles */
.btn-jp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    font-weight: 700;
    cursor: pointer;
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 8px;
}

.btn-jp-primary {
    background-color: #FB9218;
    color: white;
}

.btn-jp-primary:hover {
    background-color: #EA8107;
    transform: translateY(-1px);
    text-decoration: none;
    color: white;
}

/* Arrow Icon for Buttons */
.btn-jp.arrow-jp::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.btn-jp.arrow-jp:hover::after {
    transform: rotate(45deg) translate(2px, -2px);
}

/* Responsive */
@media (max-width: 768px) {
    .btn-jp {
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* Generic CTA Styles */
.cta-content-wrapper {
    display: flex;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
}

.cta-image-container {
    flex: 0 0 40%;
    overflow: hidden;
}

.cta-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-text-container {
    flex: 0 0 60%;
    padding: 0 30px 30px 30px;
}

.cta-text-container h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.cta-description {
    color: #666;
    margin-bottom: 20px;
}

.cta-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.cta-list li {
    margin-bottom: 12px;
    color: #666;
    line-height: 1.6;
}

.cta-list strong {
    color: #333;
}

/* Secondary CTA Button Styles */
.btn-jp-secondary {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.btn-jp-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
    text-decoration: none;
}

.btn-jp-secondary.arrow-jp::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-jp-secondary.arrow-jp:hover::after {
    transform: rotate(45deg) translateX(4px);
}

/* Responsive Styles for CTA */
@media (max-width: 768px) {
    .cta-content-wrapper {
        flex-direction: column;
    }

    .cta-image-container {
        flex: 0 0 200px;
    }

    .cta-text-container {
        flex: 0 0 auto;
        padding: 20px;
    }

    .cta-text-container h3 {
        font-size: 20px;
    }
}
