/* About Intro */
.about-intro {
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.about-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #660A4D 0%, #37003c 100%);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.about-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.about-intro h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.about-intro .lead {
    font-size: 1.25rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Cards */
.about-section {
    margin-bottom: 3rem;
}

.about-card {
    background: #ffffff;
    border: 1px solid #e0e7ed;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.about-card-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #660A4D 0%, #37003c 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-card-icon i {
    font-size: 1.75rem;
    color: #ffffff;
}

.about-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.about-card-content p {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Feature Sections */
.about-feature-section {
    margin-bottom: 3rem;
}

.about-feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.about-feature-header i {
    font-size: 2rem;
    color: #660A4D;
}

.about-feature-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.about-feature-card {
    background: #ffffff;
    border: 1px solid #e0e7ed;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.about-feature-intro {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: transform 0.2s ease;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li:hover {
    transform: translateX(5px);
}

.feature-list li i {
    font-size: 1.25rem;
    color: #00ff87;
    flex-shrink: 0;
}

.feature-list li span {
    color: #2c3e50;
    font-size: 1rem;
    line-height: 1.5;
}

.about-feature-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.about-feature-card p:last-child {
    margin-bottom: 0;
}

/* Closing Statement */
.closing-statement {
    text-align: center;
    padding: 3rem 0;
}

.stats-highlight {
    background: linear-gradient(135deg, #660A4D 0%, #37003c 100%);
    color: #ffffff;
    padding: 2rem 3rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(102, 10, 77, 0.3);
}

.stats-highlight i {
    font-size: 2rem;
}

/* Dark Mode */
.dark-mode .about-intro h2 {
    color: #ffffff;
}

.dark-mode .about-intro .lead {
    color: #a0aec0;
}

.dark-mode .about-icon {
    background: #1e2938;
}

.dark-mode .about-card {
    background: #324064;
    border-color: #3d4f73;
}

.dark-mode .about-card-icon {
    background: #1e2938;
}

.dark-mode .about-card-content h3 {
    color: #ffffff;
}

.dark-mode .about-card-content p {
    color: #a0aec0;
}

.dark-mode .about-feature-header i {
    color: #00ff87;
}

.dark-mode .about-feature-header h2 {
    color: #ffffff;
}

.dark-mode .about-feature-card {
    background: #324064;
    border-color: #3d4f73;
}

.dark-mode .about-feature-intro {
    color: #ffffff;
}

.dark-mode .about-feature-card p {
    color: #a0aec0;
}

.dark-mode .feature-list li {
    border-bottom-color: #3d4f73;
}

.dark-mode .feature-list li span {
    color: #ffffff;
}

.dark-mode .stats-highlight {
    background: #1e2938;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .about-intro {
        padding: 2rem 0;
    }
    
    .about-intro h2 {
        font-size: 1.5rem;
    }
    
    .about-intro .lead {
        font-size: 1rem;
    }
    
    .about-card {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .about-card-icon {
        width: 50px;
        height: 50px;
    }
    
    .about-card-icon i {
        font-size: 1.5rem;
    }
    
    .about-card-content h3 {
        font-size: 1.25rem;
    }
    
    .about-feature-header h2 {
        font-size: 1.5rem;
    }
    
    .about-feature-card {
        padding: 1.5rem;
    }
    
    .stats-highlight {
        padding: 1.5rem 2rem;
        font-size: 1rem;
        flex-direction: column;
        text-align: center;
    }
}
