:root {
    /* Primary Colors */
    --primary-green: #2e8b57;
    --secondary-green: #22c55e;
    --accent-green: #16a34a;

    /* Accent Colors */
    --accent-red: #dc3545;
    --accent-orange: #f59e0b;
    --accent-blue: #0d6efd;

    /* Text Colors */
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;

    /* Background Colors */
    --bg-light: #f8fafc;
    --bg-gradient: #f0fdf4;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.teachers-hero-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.teachers-hero-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 20"><defs><pattern id="grain" width="100" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="5" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="10" r="0.3" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="15" r="0.4" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="3" r="0.6" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="8" r="0.2" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="12" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="18" r="0.3" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="6" r="0.4" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="14" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="20" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.teachers-section {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

.teacher-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #ebebeb;
    height: 100%;
}

@media (max-width: 991px) {
    .teachers-hero-section {
        padding: 120px 0 60px 0;
    }
}

.teacher-text {
    font-size: 15px;
}

.teacher-title {
    font-size: 15px;
}

@media (max-width: 768px) {
    .teachers-hero-section {
        padding: 100px 0 50px 0;
    }

    .teacher-text {
        font-size: 14px;
    }

    .teacher-title {
        font-size: 14px;
    }
}

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

.teacher-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}
