/* Teacher-specific styling */
.teacher-hero {
    background-color: #f0f9ff;
}

.teacher-hero .hero-title span {
    color: #10b981;
}

.workflow-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.workflow-step {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #10b981;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    background-color: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.tracking-container {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    align-items: center;
}

.tracking-visual {
    flex: 1;
}

.dashboard-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tracking-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tracking-feature h3 {
    color: #10b981;
    margin-bottom: 0.5rem;
}

.personalization-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.personalization-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #fbbf24;
}

.personalization-card h3 {
    color: #4b5563;
    margin-bottom: 1rem;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    max-width: 350px;
}

.testimonial-content {
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #4b5563;
}

.author-title {
    font-size: 0.875rem;
    color: #6b7280;
}

.feature-card.detailed {
    padding: 1.5rem;
    height: auto;
    min-height: 200px;
}

@media (max-width: 768px) {
    .tracking-container {
        flex-direction: column;
    }
    
    .personalization-grid {
        grid-template-columns: 1fr;
    }
    
    .workflow-step {
        padding: 1.5rem;
    }
}teache