/* Content specific styles */
.content-section {
    padding: 60px 0;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    border-left: 5px solid var(--accent-color);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.info-card h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.info-card h4 i {
    margin-right: 12px;
    color: var(--accent-color);
    font-size: 1.3rem;
}

.function-list {
    list-style: none;
    padding: 0;
}

.function-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    padding-left: 25px;
}

.function-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 10px;
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
}

.function-list li:last-child {
    border-bottom: none;
}

/* Section title styling */
.section-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Light background utility */
.light-bg {
    background: #f8fafc;
}

/* Additional utility classes */
.bg-success {
    background-color: #10b981 !important;
}

.text-success {
    color: #10b981 !important;
}

.success-color {
    color: #10b981;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .info-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .info-card h4 {
        font-size: 1.3rem;
    }
}