.success-story-card {
    background: rgba(170, 231, 255, 0.233) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 12px !important;
    padding: 1.5rem !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    height: auto !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    flex-direction: row !important;
    width: 100% !important;
}

.success-story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-bottom: #022a79 3px solid;
}

.story-photo-container {
    position: relative !important;
    flex-shrink: 0 !important;
}

.story-photo {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 2px solid #022a79 !important;
    display: block !important;
}

.demo-avatar {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 24px !important;
    border: 2px solid #e8ecf4 !important;
}

.verified-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: #1da1f2;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(29, 161, 242, 0.3);
}

.story-content {
    flex: 1 !important;
    min-width: 0 !important;
}

.story-header {
    margin-bottom: 0.75rem;
}

.story-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #2c3e50;
    line-height: 1.3;
}

.story-position {
    font-size: 0.9rem;
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.story-company {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0.75rem;
}

.story-experience {
    font-size: 0.9rem;
    color: #495057;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.story-review {
    font-style: italic;
    color: #495057;
    line-height: 1.6;
    margin: 0.75rem 0 0 0;
    padding: 0.75rem;
    border-left: 3px solid var(--primary-blue);
    background: #f8f9fa;
    border-radius: 0 8px 8px 0;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .success-story-card {
        margin-bottom: 1rem;
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .story-photo-container {
        align-self: center;
        margin-bottom: 0.5rem;
    }
    
    .story-photo img,
    .demo-avatar {
        width: 50px;
        height: 50px;
    }
    
    .verified-badge {
        width: 16px;
        height: 16px;
        font-size: 8px;
    }
}


/* Mobile Specific Tweaks */
@media (max-width: 768px) {
    /* Success Story Card */
    .success-story-card {
        margin-bottom: 0.8rem;
        padding: 0.8rem;
        flex-direction: column;
        gap: 0.6rem;
        text-align: center;
    }

    .story-photo {
        width: 48px !important;
        height: 48px !important;
    }

    .demo-avatar {
        width: 48px !important;
        height: 48px !important;
        font-size: 20px !important;
    }

    .verified-badge {
        width: 14px;
        height: 14px;
        font-size: 7px;
    }

    .story-name {
        font-size: 1rem;
    }

    .story-position {
        font-size: 0.85rem;
    }

    .story-company {
        font-size: 0.8rem;
    }

    .story-experience,
    .story-review {
        font-size: 0.82rem;
        line-height: 1.4;
    }

    /* Service Items */
    .service-item {
        width: 100%;
        height: auto;
        min-height: 200px;
    }

    .service-content {
        flex-direction: column;
        gap: 0.6rem;
    }

    .service-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .service-title {
        font-size: 0.95rem;
    }

    .service-description {
        font-size: 0.8rem;
    }

    /* Call to Action */
    .call-container {
        height: auto;
        padding: 1.5rem 0;
    }

    .call-sub-container {
        height: auto;
        width: 95%;
        padding: 1rem;
    }
}
