/* SPK Choose Us Section Styles */
.spk-choose-section {
    background-color: #f9f9f9;
    font-family: 'Libre Franklin', sans-serif;
    position: relative;
    overflow: hidden;
}

.spk-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

/* Image Column */
.spk-choose-image-col {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.spk-choose-image-wrapper {
    position: relative;
    border-radius: 20px;
    border-top-right-radius: 100px;
    /* Distinctive shape from Figma */
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    /* Maintain aspect ratio */
    aspect-ratio: 3/4;
}

.spk-choose-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.spk-choose-image-wrapper:hover .spk-choose-image {
    transform: scale(1.05);
}

/* Floating Badge (Example from Figma idea, optional) */
.spk-choose-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 200px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
}

.spk-choose-badge-icon {
    font-size: 2rem;
    color: #71b100;
}

.spk-choose-badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}


/* Content Column */
.spk-choose-content-col {
    flex: 1;
    min-width: 300px;
}

.spk-choose-header {
    margin-bottom: 40px;
}

.spk-choose-subtitle {
    display: inline-block;
    color: #71b100;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.spk-choose-title {
    font-family: 'Playfair Display SC', serif;
    font-size: 2.5rem;
    color: #222;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.spk-choose-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* List Item Design */
.spk-choose-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.spk-choose-number-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #71b100;
    /* Use brand color instead of specific teal/orange unless requested */
    color: #fff;
    border-radius: 12px;
    border-bottom-right-radius: 20px;
    /* Slight shape nuance */
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display SC', serif;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(113, 177, 0, 0.3);
}

/* Alternate colors for variety like in the mockup */
.spk-choose-item:nth-child(2n) .spk-choose-number-wrapper {
    background-color: #222;
    /* Dark secondary color */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.spk-choose-item-content {
    flex: 1;
}

.spk-choose-item-title {
    font-family: 'Playfair Display', serif;
    /* Or Libre Franklin bold? */
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 10px 0;
}

.spk-choose-item-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .spk-choose-container {
        flex-direction: column-reverse;
        /* Content first on mobile? Or image first? Usually image top or content top. Let's do image top conform to flow. */
        flex-direction: column;
    }

    .spk-choose-image-col,
    .spk-choose-content-col {
        width: 100%;
        flex: auto;
    }

    .spk-choose-image-wrapper {
        aspect-ratio: 16/9;
        /* Wider on mobile */
        border-top-right-radius: 50px;
    }

    .spk-choose-badge {
        left: 0;
        bottom: -20px;
    }
}