.sd-wrapper-ce2f26bd {
    background-color: #f3f4f6;
    padding: 40px 20px;
    font-family: 'Inter', 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
}

.sd-container-ce2f26bd {
    background-color: #ffffff;
    border-radius: 16px;
    max-width: 1200px;
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.sd-badge-ce2f26bd {
    display: inline-block;
    background-color: #f3f4f6;
    color: #4b5563;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 9999px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sd-title-ce2f26bd {
    font-size: 42px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.sd-subtitle-ce2f26bd {
    font-size: 18px;
    color: #6b7280;
    margin: 0 0 48px 0;
}

.sd-grid-ce2f26bd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 768px) {
    .sd-grid-ce2f26bd {
        grid-template-columns: 1fr 1fr;
        column-gap: 60px;
        position: relative;
    }
    
    .sd-grid-ce2f26bd::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 1px;
        background-color: #e5e7eb;
        transform: translateX(-50%);
    }
}

.sd-item-ce2f26bd {
    display: flex;
    align-items: center;
    padding: 16px;
    text-decoration: none;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.2s ease;
    border-radius: 8px;
}

.sd-item-ce2f26bd:hover {
    background-color: #f8f8f8;
    cursor: pointer;
}

.sd-item-image-ce2f26bd {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 16px;
    background-color: #e5e7eb;
}

.sd-item-image-ce2f26bd img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sd-item-content-ce2f26bd {
    flex-grow: 1;
}

.sd-item-name-ce2f26bd {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 4px 0;
}

.sd-item-location-ce2f26bd {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.sd-item-icon-ce2f26bd {
    color: #9ca3af;
    flex-shrink: 0;
    margin-left: 16px;
}

.sd-button-wrap-ce2f26bd {
    text-align: center;
    margin-top: 48px;
}

.sd-button-ce2f26bd {
    display: inline-block;
    width: 100%;
    max-width: 320px;
    background-color: #ffffff;
    color: #111827;
    border: 1px solid #374151;
    border-radius: 12px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.sd-button-ce2f26bd:hover {
    background-color: #111827;
    color: #ffffff;
}

@media (max-width: 767px) {
    .sd-container-ce2f26bd {
        padding: 24px;
    }
    
    .sd-title-ce2f26bd {
        font-size: 32px;
    }
    
    .sd-subtitle-ce2f26bd {
        margin-bottom: 32px;
    }
}