/* Student Scenarios Section Design */
.student-scenarios-section {
    padding: 80px 5%;
    background-color: #f8f9fa; /* Soft, neutral background */
    position: relative;
}

.scenarios-container {
    max-width: 1200px;
    margin: 0 auto;
}

.scenarios-header {
    text-align: center;
    margin-bottom: 50px;
}

.scenarios-header h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 15px;
}

.scenarios-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.scenario-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #2563eb; /* Primary brand color accent */
    display: flex;
    flex-direction: column;
}

.scenario-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.scenario-icon {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 20px;
}

.scenario-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
}

.scenario-story {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    font-style: italic;
    position: relative;
}

.scenario-story::before {
    content: '"';
    font-size: 3rem;
    color: #e2e8f0;
    position: absolute;
    top: -15px;
    left: -15px;
    font-family: Georgia, serif;
    z-index: 0;
}

.scenario-story p {
    position: relative;
    z-index: 1;
    margin: 0;
}

.scenario-story strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .scenarios-grid {
        gap: 20px;
    }
    .scenario-card {
        padding: 30px 20px;
    }
}

@media (max-width: 992px) {
    .scenarios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .student-scenarios-section {
        padding: 60px 5%;
    }
    .scenarios-header h2 {
        font-size: 2rem;
    }
    .scenarios-grid {
        grid-template-columns: 1fr;
    }
}
