/* Стили для страницы школы */
        .school-hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/images/artania-fon.jpg') center/cover!important;
            color: white;
            padding: 6rem 0;
            text-align: center;
        }
        
        .school-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-family: var(--font-title);
        }
        
        .courses-section {
            padding: 5rem 0;
        }
        
        .course-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            height: 100%;
        }
        
        .course-card:hover {
            transform: translateY(-5px);
        }
        
        .course-image {
            height: 200px;
            background: linear-gradient(135deg, var(--amber), var(--terracotta));
        }
        
        .course-content {
            padding: 1.5rem;
        }
        
        .course-price {
            color: var(--amber);
            font-size: 1.5rem;
            font-weight: 700;
            margin: 1rem 0;
        }
        
        .expert-card {
            text-align: center;
            padding: 1.5rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            height: 100%;
        }
        
        .expert-photo {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--green), var(--turquoise));
            margin: 0 auto 1rem;
        }
        
        .article-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            cursor: pointer;
            transition: transform 0.3s;
            height: 100%;
        }
        
        .article-card:hover {
            transform: translateY(-5px);
        }
        
        .article-image {
            height: 150px;
            background: linear-gradient(135deg, var(--green), var(--turquoise));
        }
        
        .certificate-section {
            background: linear-gradient(135deg, #f5f5f5, #ffffff);
            padding: 4rem 0;
            text-align: center;
        }
        
        .loading-spinner {
            text-align: center;
            padding: 2rem;
            color: var(--green);
            font-size: 1.1rem;
        }
        
        .loading-spinner::after {
            content: '';
            display: inline-block;
            width: 20px;
            height: 20px;
            margin-left: 10px;
            border: 2px solid var(--green);
            border-top-color: transparent;
            border-radius: 50%;
            animation: spinner 1s linear infinite;
        }
        
        @keyframes spinner {
            to { transform: rotate(360deg); }
        }
        
        @media (max-width: 768px) {
            .school-hero h1 {
                font-size: 2.5rem;
            }
        }