.gc-5de44e74-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    overflow: hidden;
    padding: 40px 20px;
    --reflection-base-color: rgba(255,255,255,1);
    background-color: #000000; /* Fallback */
}

.gc-5de44e74-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.gc-5de44e74-content {
    max-width: 80%;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    text-align: left;
    transition: transform 0.3s ease;
    position: relative; 
    overflow: hidden; 
    z-index: 1;
}

/* Mirror reflection effect */
.gc-5de44e74-content.has-mirror-reflection::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 50%;
    height: 300%;
    
    background: linear-gradient(to right, 
        transparent 0%, 
        color-mix(in srgb, var(--reflection-base-color) 30%, transparent) 50%, 
        transparent 100%);
    
    transform: rotate(30deg);
    pointer-events: none;
    z-index: 10;
    left: var(--reflection-pos, -100%);
    transition: left 0.1s ease-out;
}

.gc-5de44e74-content:hover {
    transform: translateY(-5px);
}

.gc-5de44e74-title {
    margin-top: 0;
    margin-bottom: 5px;
    text-align: center;
}

.gc-5de44e74-subtitle {
    text-align: center;
    font-size: 0.9em;
    margin-bottom: 25px;
    font-weight: 500;
}

.gc-5de44e74-paragraphs-container {
    position: relative;
    padding-left: 20px;
}

.gc-5de44e74-paragraph {
    position: relative;
    padding-bottom: 30px;
    line-height: 1.6;
}

.gc-5de44e74-paragraph:last-child {
    padding-bottom: 0;
}

/* The dot */
.gc-5de44e74-paragraph::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 2;
}

/* The connecting line */
.gc-5de44e74-paragraph:not(:last-child)::after {
    content: '';
    position: absolute;
    left: -16px;
    top: 16px;
    bottom: -6px;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.gc-5de44e74-buttons-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.gc-5de44e74-btn {
    display: block;
    width: fit-content;
    padding: 10px 25px;
    border: 2px solid;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
}

/* Fallback for when entrance animation is off */
.always-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Base Reveal State for Entrance Animation */
.reveal-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Active Reveal State */
.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}
