
    .teacher-profile-card {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        transition: 0.4s ease;
    }

    .teacher-profile-card:hover {
        transform: translateY(-5px);
    }

    .teacher-img img {
        width: 100%;
        object-fit: cover;
        border-bottom: 1px solid #eee;
    }

    .teacher-content {
        padding: 30px;
    }

    .teacher-name {
        font-size: 28px;
        font-weight: 700;
        color: #222;
    }

    .teacher-role {
        color: #f39c12;
        font-weight: 600;
        font-size: 18px;
        margin-bottom: 15px;
    }

    .teacher-bio {
        font-size: 16px;
        color: #555;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .teacher-contact i {
        color: #f39c12;
        margin-right: 10px;
    }

    .social-icons a {
        display: inline-block;
        margin: 0 5px;
        background: #f39c12;
        color: white;
        width: 38px;
        height: 38px;
        line-height: 38px;
        border-radius: 50%;
        text-align: center;
        transition: all 0.3s ease;
    }

    .social-icons a:hover {
        background: #e67e22;
        transform: scale(1.1);
    }

    .teacher-section-title {
        font-size: 22px;
        color: #2c3e50;
        font-weight: 600;
        margin-top: 30px;
        margin-bottom: 10px;
    }

    .teacher-experience-box {
        background: #fdf2e9;
        padding: 20px;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 500;
        color: #444;
    }
    
    
       .faq-section {
        padding: 80px 0;
        background: #f9f9f9;
    }

    .faq-title {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 40px;
        text-align: center;
        color: #222;
    }

    .faq-accordion .accordion {
        background: #fff;
        border-radius: 12px;
        margin-bottom: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        overflow: hidden;
        transition: all 0.3s ease-in-out;
    }

    .faq-accordion .accordion.active {
        border-left: 4px solid #f39c12;
    }

    .accordion-title {
        padding: 20px 25px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-weight: 600;
        font-size: 18px;
        background: #fff;
    }

    .accordion-title:hover {
        background: #fef5e7;
    }

    .accordion-title i {
        color: #f39c12;
        font-size: 20px;
    }

    .accordion-content {
        display: none;
        padding: 0 25px 20px;
        background: #fff;
        font-size: 16px;
        color: #555;
    }

    .accordion.active .accordion-content {
        display: block;
    }

    .accordion-content p {
        margin: 0;
    }

    .accordion-title h4 {
        margin: 0;
        font-size: 18px;
        color: #333;
    }

    @media (max-width: 768px) {
        .faq-title {
            font-size: 28px;
        }

        .accordion-title {
            flex-direction: column;
            align-items: flex-start;
        }
    }
    .sd{
            display: flex;
    justify-content: space-between;
    }