/* About Page Specific Styles */
.about-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.about-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-content {
    padding: 30px 0;
}

.about-section {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 8px var(--shadow-color);
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.about-section h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.about-section p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-color);
}

.benefits-list {
    padding-left: 20px;
    margin-bottom: 20px;
}

.benefits-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.faq-question {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.faq-question:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text-color);
}

.faq-question p {
    margin-left: 0;
    color: var(--light-text);
}

/* Mobile-specific about page styles */
@media (max-width: 480px) {
    .about-header {
        padding: 40px 0;
    }

    .about-header h1 {
        font-size: 2rem;
    }

    .about-section {
        padding: 15px;
    }

    .about-section h2 {
        font-size: 1.3rem;
    }
}