#about-section, #faq-section {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

#about-section h2, #faq-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
    font-size: 2rem;
}

#about-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

#about-section h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.5rem;
}

#about-section ul {
    list-style: none;
    margin-left: 1.5rem;
}

#about-section ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    color: #555;
}

#about-section ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
}

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

.faq-item h3 {
    color: #007bff;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    cursor: pointer;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

@media (max-width: 768px) {
    #about-section, #faq-section {
        padding: 2rem;
        margin: 1rem;
    }
    
    #about-section h2, #faq-section h2 {
        font-size: 1.8rem;
    }
    
    #about-section h3 {
        font-size: 1.3rem;
    }
}

