/* Educators Page Styles - Matching Getting Started Page */

/* CSS Variables */
:root {
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

/* Page Header */
.page-header {
    max-width: 1200px;
    margin: 4rem auto 2rem;
    padding: 0 2rem;
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: var(--header-font-weight);
    margin-bottom: 1rem;
    color: var(--text-color);
}

.page-header .highlight {
    color: var(--primary-color);
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-muted-color);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.decoration-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 1px;
}

.decoration-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Page Header Actions */
.header-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.header-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.header-actions .btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(192, 72, 58, 0.3);
}

.header-actions .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 72, 58, 0.4);
}

.header-actions .btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.header-actions .btn-secondary:hover {
    background: var(--surface-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Main Footer */
.main-footer {
    background: var(--surface-color);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    text-align: center;
}

.main-footer p {
    color: var(--text-muted-color);
    font-size: 0.875rem;
    margin: 0;
}

/* Button Styles - Restoring Elaborate Styling */
.start-activity-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
}

.start-activity-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-dark), #8B2E2A);
}

.download-btn {
    background: var(--surface-color);
    color: var(--text-color);
    border: 2px solid var(--border-color);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.download-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.activity-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.activity-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.cta-btn {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Introduction Section Styles */
.intro-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--background-color) 0%, var(--surface-color) 100%);
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23C0483A" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.intro-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.intro-content .highlight {
    color: var(--primary-color);
    position: relative;
}

.intro-content p {
    font-size: 1.2rem;
    color: var(--text-muted-color);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.intro-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.intro-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}

.intro-actions .btn svg {
    flex-shrink: 0;
}


/* Partnership Section */
.partnership-section {
    padding: 60px 0;
    background: var(--surface-color);
}

.partnership-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.partnership-text {
    max-width: 700px;
    margin: 0 auto;
}

.partnership-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-family: 'Fredoka', sans-serif;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partnership-logos-simple {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.logo-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    height: 100px; /* Fixed height to ensure even alignment */
}

.partner-logo-simple {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: white;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

/* Robin logo specific styling */
.logo-simple:first-child .partner-logo-simple {
    object-fit: cover;
    padding: 0;
    border-radius: 12px;
    background: transparent;
    border: none;
    box-shadow: none;
}

/* GLSI logo specific styling */
.logo-simple:last-child .partner-logo-simple {
    object-fit: contain;
    padding: 8px;
    border-radius: 12px;
}

.partner-logo-simple:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.logo-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    font-family: 'Fredoka', sans-serif;
    letter-spacing: 0.3px;
}

.collaboration-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 100px; /* Match logo container height for perfect alignment */
}

.connector-text {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary-color);
    font-family: 'Fredoka', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    transform: translateY(-8px);
}

.connector-text:hover {
    transform: translateY(-8px) scale(1.1);
    color: var(--primary-dark);
}

.partnership-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted-color);
    margin: 0;
    font-weight: 500;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: var(--background-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-card {
    background: var(--surface-color);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform var(--transition);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.benefit-card p {
    color: var(--text-muted-color);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.benefit-badges {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.badge {
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* Activities Section Updates */
.activities-section {
    padding: 100px 0;
    background: var(--background-color);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.activity-card {
    background: var(--surface-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.activity-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, var(--surface-color), #FFFBF8);
}

.activity-card.featured::before {
    content: 'Featured';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.activity-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform var(--transition);
}

.activity-card:hover::after {
    transform: scaleX(1);
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.activity-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition);
}

.activity-card:hover .activity-icon {
    transform: scale(1.1);
}

.activity-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.activity-card p {
    color: var(--text-muted-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.activity-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.activity-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--background-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-muted-color);
    font-weight: 500;
}

.activity-meta svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Resources Section Updates */
.resources-section {
    padding: 100px 0;
    background: var(--surface-color);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.resource-category {
    background: var(--surface-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all var(--transition);
}

.resource-category:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.category-header h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.category-header h3 svg {
    color: var(--primary-color);
}

.count {
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.resource-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resource-item {
    padding: 1.5rem;
    background: var(--background-color);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: all var(--transition);
}

.resource-item:hover {
    background: var(--surface-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.resource-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.resource-item p {
    color: var(--text-muted-color);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.resource-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.resource-actions .start-activity-btn.small {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.download-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: color var(--transition);
}

.download-link:hover {
    color: var(--primary-dark);
}

.difficulty,
.type {
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.difficulty.easy {
    background: #E8F5E8;
    color: #2E7D32;
}

.difficulty.medium {
    background: #FFF3E0;
    color: #F57C00;
}

.type {
    background: var(--background-color);
    color: var(--text-muted-color);
}

/* Implementation Section Updates */
.implementation-section {
    padding: 100px 0;
    background: var(--background-color);
}

.implementation-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    background: var(--surface-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    transition: all var(--transition);
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform var(--transition);
}

.step:hover::before {
    transform: scaleX(1);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    transition: all var(--transition);
}

.step:hover .step-number {
    transform: scale(1.1);
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.step p {
    color: var(--text-muted-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-resources {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition);
}

.resource-link:hover {
    color: var(--primary-dark);
}

.resource-link svg {
    flex-shrink: 0;
}

/* Success Stories Section Updates */
.success-stories-section {
    padding: 100px 0;
    background: var(--surface-color);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.story-card {
    background: var(--surface-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform var(--transition);
}

.story-card:hover::before {
    transform: scaleX(1);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.story-content {
    margin-bottom: 1.5rem;
}

.quote-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.story-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    font-style: italic;
    margin: 0;
}

.story-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: var(--text-color);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-muted-color);
}

.school-info span {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* CTA Section Updates */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cta-stat {
    text-align: center;
}

.cta-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.cta-stat .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}

.cta-btn.primary {
    background: white;
    color: var(--primary-color);
}

.cta-btn.primary:hover {
    background: var(--background-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .hero-cards {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    
    .hero-card.primary {
        grid-column: 1;
    }
    
    .partnership-logos-simple {
        gap: 1.5rem;
    }
    
    .logo-simple {
        height: 85px; /* Adjusted height for tablet */
    }
    
    .partner-logo-simple {
        width: 60px;
        height: 60px;
        padding: 6px;
    }
    
    /* Robin logo specific styling for tablet */
    .logo-simple:first-child .partner-logo-simple {
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
    }
    
    /* GLSI logo specific styling for tablet */
    .logo-simple:last-child .partner-logo-simple {
        padding: 6px;
    }
    
    .logo-name {
        font-size: 0.9rem;
    }
    
    .collaboration-connector {
        height: 85px; /* Match tablet logo height */
    }
    
    .connector-text {
        font-size: 2rem;
        background: transparent;
        border: none;
        transform: translateY(-6px);
    }
    
    .partnership-text h2 {
        font-size: 2rem;
    }
    
    .lesson-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .lesson-meta {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }
    
    .lesson-details {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .benefits-grid,
    .activities-grid,
    .resources-grid,
    .implementation-steps,
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-stats {
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .intro-section {
        padding: 40px 0;
    }
    
    .intro-content h1 {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .intro-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .partnership-logos-simple {
        gap: 1rem;
    }
    
    .logo-simple {
        height: 75px; /* Adjusted height for mobile */
    }
    
    .partner-logo-simple {
        width: 50px;
        height: 50px;
        padding: 5px;
    }
    
    /* Robin logo specific styling for mobile */
    .logo-simple:first-child .partner-logo-simple {
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
    }
    
    /* GLSI logo specific styling for mobile */
    .logo-simple:last-child .partner-logo-simple {
        padding: 5px;
    }
    
    .logo-name {
        font-size: 0.8rem;
    }
    
    .collaboration-connector {
        height: 75px; /* Match mobile logo height */
    }
    
    .connector-text {
        font-size: 1.8rem;
        background: transparent;
        border: none;
        transform: translateY(-5px);
    }
    
    .partnership-text h2 {
        font-size: 1.8rem;
    }
    
    .partnership-text p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Assessment Tools Section */
.assessment-tools-section {
    padding: 80px 0;
    background: var(--surface-color);
}

.assessment-tools-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.assessment-category {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.category-icon {
    font-size: 2.5rem;
}

.category-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
}

.assessment-category p {
    color: var(--text-muted-color);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Quiz Levels */
.quiz-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.quiz-level-card {
    background: var(--surface-color);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.quiz-level-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.quiz-level-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.level-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.level-badge.beginner {
    background: #e8f5e8;
    color: #2e7d32;
}

.level-badge.intermediate {
    background: #fff3e0;
    color: #f57c00;
}

.level-badge.advanced {
    background: #fce4ec;
    color: #c2185b;
}

.level-grade {
    font-size: 0.9rem;
    color: var(--text-muted-color);
    font-weight: 500;
}

.quiz-level-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.quiz-level-card p {
    color: var(--text-muted-color);
    margin-bottom: 1.5rem;
}

.quiz-start-btn {
    width: 100%;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), #e63946);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quiz-start-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 72, 58, 0.3);
}

/* Journal Types */
.journal-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.journal-type-card {
    background: var(--surface-color);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.journal-type-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.journal-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.journal-type-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.journal-type-card p {
    color: var(--text-muted-color);
    margin-bottom: 1rem;
}

.journal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: var(--background-color);
    color: var(--text-color);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.journal-start-btn {
    width: 100%;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #4caf50, #8bc34a);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.journal-start-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

/* PDF Resources */
.pdf-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.pdf-resource-group h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.pdf-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pdf-link {
    display: inline-block;
    padding: 0.6rem 1rem;
    background: var(--surface-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.pdf-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        margin: 3rem auto 2rem;
        padding: 0 1rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.125rem;
    }
    
    .container {
        padding: 0 1rem;
    }

    .quiz-levels,
    .journal-types {
        grid-template-columns: 1fr;
    }
    
    .pdf-resources {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-header {
        margin: 2rem auto 1.5rem;
        padding: 0 1rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}
