/* --- Job Guarantee Section --- */
.pccs-job-guarantee-section {
    padding: 6rem 2rem;
    background-color: var(--card-bg); /* Use a light background for this section */
    color: var(--dark-text);
}

.pccs-job-guarantee-container {
    max-width: 1200px;
}

.pccs-guarantee-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    text-align: left;
}

/* Ensure single column layout on smaller screens */
@media (max-width: 992px) {
    .pccs-guarantee-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .pccs-guarantee-image-wrapper {
        order: -1; /* Place image on top for mobile */
    }
}

/* Text Content Styling */
.pccs-guarantee-text-content {
    animation: fadeIn 1s ease-out forwards;
}

.pccs-guarantee-heading {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-colors);
    font-size: clamp(2rem, 4vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.pccs-guarantee-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--dark-text);
    opacity: 0.9;
}

/* Highlights and Eligibility */
.pccs-guarantee-highlights,
.pccs-guarantee-eligibility {
    margin-bottom: 2rem;
}

.pccs-highlights-title {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-colors);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pccs-guarantee-highlights ul,
.pccs-guarantee-eligibility ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pccs-guarantee-highlights li,
.pccs-guarantee-eligibility li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.4;
    color: var(--dark-text);
}

.pccs-guarantee-highlights li .pccs-list-icon,
.pccs-guarantee-eligibility li .pccs-list-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background-color: var(--secondary-colors);
    border-radius: 50%;
}

/* Image Wrapper and Image */
.pccs-guarantee-image-wrapper {
    position: relative;
    padding-top: 100%; /* Creates a square container */
    background: var(--primary-colors);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: slideUp 1s ease-out forwards;
}

.pccs-guarantee-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.pccs-guarantee-image:hover {
    transform: scale(1.05); /* Subtle zoom on hover */
}

/* Button Styling */
.pccs-guarantee-btn {
    display: inline-block;
    background-color: var(--secondary-colors);
    color: var(--primary-colors);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 1rem;
}

.pccs-guarantee-btn:hover {
    background-color: var(--accent-color);
    color: var(--light-text);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}