/* About Us Premium Styling */
.sp-about-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 100px 0;
    text-align: center;
    color: #fff;
    border-bottom: 4px solid #e5484d;
}

.sp-about-hero h1 {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sp-about-hero p {
    font-size: 18px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
}

.sp-about-section {
    padding: 80px 0;
    background: #fff;
}

.sp-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.sp-about-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.15);
}

.sp-about-text h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.sp-about-text p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
    font-family: 'Manrope', sans-serif;
}

/* Stats Section */
.sp-stats-sec {
    background: #f8fafc;
    padding: 60px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.sp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.sp-stat-item h3 {
    font-size: 40px;
    font-weight: 900;
    color: #e5484d;
    margin-bottom: 8px;
}

.sp-stat-item p {
    font-size: 14px;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Core Values */
.sp-values-sec {
    padding: 80px 0;
    background: #fff;
}

.sp-values-title {
    text-align: center;
    margin-bottom: 50px;
}

.sp-values-title h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.sp-values-title p {
    font-size: 16px;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
}

.sp-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sp-value-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    border: 1.5px solid #e2e8f0;
    transition: all 0.3s ease;
}

.sp-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -20px rgba(15, 23, 42, 0.1);
    border-color: #e5484d;
}

.sp-value-icon {
    width: 60px;
    height: 60px;
    background: #fff5f5;
    color: #e5484d;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
}

.sp-value-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.sp-value-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    font-family: 'Manrope', sans-serif;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .sp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sp-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sp-about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sp-about-hero h1 {
        font-size: 36px;
    }
    
    .sp-about-hero p {
        font-size: 16px;
    }
    
    .sp-values-grid {
        grid-template-columns: 1fr;
    }
    
    .sp-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* FAQ Section */
.sp-faq-sec {
    padding: 80px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.sp-faq-title {
    text-align: center;
    margin-bottom: 50px;
}

.sp-faq-title h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.sp-faq-title p {
    font-size: 16px;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
}

.sp-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sp-faq-item {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sp-faq-item[open] {
    border-color: #e5484d;
    box-shadow: 0 10px 25px -10px rgba(15, 23, 42, 0.08);
}

.sp-faq-item summary {
    padding: 22px 30px;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    outline: none;
}

.sp-faq-item summary::-webkit-details-marker {
    display: none;
}

.sp-faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #64748b;
    transition: transform 0.3s ease, color 0.3s ease;
    font-size: 14px;
}

.sp-faq-item[open] summary::after {
    transform: rotate(180deg);
    color: #e5484d;
}

.sp-faq-item p {
    padding: 0 30px 25px 30px;
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    font-family: 'Manrope', sans-serif;
}
