/*
 * OTO+ Courses Page Styles
 */

/* Service Lineup Section */
.service-lineup {
    padding-bottom: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #fcfcfc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid #eee;
}

.service-icon {
    font-size: 1.5rem;
    color: var(--color-accent);
}

.service-card h3 {
    font-family: var(--font-primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}
/* FAQ Section */
.faq {
    background-color: #f9f9f9;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    transition: transform 0.2s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 15px;
    position: relative;
    padding-left: 35px;
    line-height: 1.5;
}

.faq-question::before {
    content: 'Q';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background-color: var(--color-accent);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-size: 0.9rem;
    font-weight: 700;
}

.faq-answer {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    position: relative;
    padding-left: 35px;
    border-top: 1px dashed #eee;
    padding-top: 15px;
}

.faq-answer::before {
    content: 'A';
    position: absolute;
    left: 0;
    top: 15px;
    width: 24px;
    height: 24px;
    background-color: #eee;
    color: #888;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-size: 0.9rem;
    font-weight: 700;
}
