
         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #f0f4fa;
            color: #0b1e33;
            line-height: 1.5;
        }

        /* Основной контейнер */
        .container {
            max-width: 1300px;
            margin: 0 auto;
            background: white;
            box-shadow: 0 30px 60px -20px rgba(0,30,60,0.3);
            border-radius: 0 0 40px 40px;
            overflow: hidden;
        }

        /* ===== ТИТУЛЬНАЯ СТРАНИЦА (HERO) ===== */
        .hero {
            width: 100%;
            height: 90vh;
            min-height: 600px;
            background: linear-gradient(0deg, rgba(0, 20, 40, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%), url('99237a40-299e-4f20-855b-baad732fb06d.webp') no-repeat center center;
            background-size: cover;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            text-align: center;
            position: relative;
            padding-top: 60px; /* ещё выше поднял */
        }

        .hero-overlay {
            max-width: 800px;
            padding: 25px 40px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 80px 20px 80px 20px;
            border: 2px solid rgba(255,255,240,0.3);
            box-shadow: 0 30px 60px rgba(0,0,0,0.4);
            margin-top: 0; /* убрал лишний отступ */
        }

        .hero h1 {
            font-size: 5.5rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: white;
            text-shadow: 0 4px 20px #001122;
            line-height: 1.1;
        }
        .hero h1 span {
            color: #ffd966;
            background: linear-gradient(145deg, #ffe180, #feb82b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 30px #fbbf24;
        }
        .hero p {
            font-size: 1.8rem;
            color: rgba(255,255,235,0.95);
            margin-top: 15px;
            font-weight: 500;
            text-shadow: 0 2px 8px black;
        }

        /* ===== ШАПКА С ЛОГОТИПОМ ===== */
        .header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 40px;
            background: white;
            border-bottom: 2px solid #dde7f0;
            flex-wrap: wrap;
        }
        .logo-container {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .logo-pic {
            max-width: 300px;
            height: auto;
        }
        .logo-pic img {
            width: 100%;
            height: auto;
            display: block;
        }
        .school-badge {
            font-size: 2rem;
            font-weight: 700;
            color: #1e3a5f;
            background: #ecf3fa;
            padding: 10px 24px;
            border-radius: 60px;
        }

        /* Основной контент */
        .content {
            padding: 30px 40px 20px;
        }

        /* Заголовки секций */
        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin: 50px 0 30px 0;
            display: flex;
            align-items: center;
            gap: 14px;
            color: #0b2b50;
            border-left: 10px solid #2563eb;
            padding-left: 25px;
        }
        .section-title i {
            color: #2563eb;
            font-size: 2.2rem;
        }

        /* Расписание */
        .schedule-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
            gap: 22px;
        }
        .day-card {
            background: #f8fcff;
            border-radius: 28px;
            padding: 22px 18px;
            box-shadow: 0 12px 24px -12px #afc7db;
            border: 1px solid #dbe4ed;
            transition: 0.2s;
        }
        .day-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 30px -12px #3b82f6;
        }
        .day-card h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #2563eb;
            border-bottom: 3px solid #b1d0ff;
            padding-bottom: 12px;
            margin-bottom: 18px;
        }
        .lesson-item {
            display: flex;
            gap: 10px;
            padding: 7px 0;
            border-bottom: 1px dashed #bed3e9;
        }
        .lesson-time {
            font-weight: 600;
            color: #3a546d;
            min-width: 80px;
        }
        .lesson-name {
            font-weight: 500;
        }

        /* Список учеников */
        .student-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
            gap: 14px;
        }
        .student-card {
            background: #f1f7fd;
            border-radius: 50px 14px 14px 50px;
            padding: 12px 12px 12px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            border: 1px solid #cbdbe9;
            box-shadow: 0 4px 6px -2px rgba(0,0,0,0.03);
            font-weight: 500;
        }
        .student-card i {
            color: #2563eb;
            background: white;
            border-radius: 50%;
            padding: 8px;
            font-size: 1rem;
            box-shadow: 0 4px 6px #cdddec;
        }

        /* Дни рождения */
        .birthday-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 22px;
        }
        .season-card {
            background: linear-gradient(135deg, #ffffff, #f3f9ff);
            border-radius: 30px;
            padding: 22px;
            border: 1px solid #cbddee;
            box-shadow: 0 15px 30px -12px #abc0d3;
        }
        .season-card h3 {
            font-size: 1.9rem;
            font-weight: 700;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .season-card:nth-child(1) h3 i { color: #d97706; }
        .season-card:nth-child(2) h3 i { color: #2563eb; }
        .season-card:nth-child(3) h3 i { color: #16a34a; }
        .season-card:nth-child(4) h3 i { color: #eab308; }
        .bday-row {
            display: flex;
            justify-content: space-between;
            padding: 9px 0;
            border-bottom: 1px solid #d6e4f0;
        }
        .bday-row .date {
            background: #e3edf6;
            padding: 2px 14px;
            border-radius: 40px;
            font-weight: 600;
            color: #1f4770;
        }

        /* Самоуправление */
        .sector-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 26px;
        }
        .sector-item {
            background: white;
            border-radius: 32px;
            padding: 26px;
            box-shadow: 0 24px 32px -14px #a0bbd4;
            border: 1px solid #e1ebf5;
            transition: 0.2s;
        }
        .sector-item:hover {
            box-shadow: 0 28px 40px -14px #2563eb;
        }
        .sector-item h4 {
            font-size: 2rem;
            font-weight: 700;
            display: flex;
            gap: 15px;
            align-items: center;
            border-bottom: 4px solid #2563eb;
            padding-bottom: 14px;
            margin-bottom: 18px;
        }
        .member-list {
            background: #eaf1fa;
            border-radius: 60px;
            padding: 10px 20px;
            font-weight: 600;
            color: #113355;
            display: inline-block;
            margin-bottom: 16px;
        }
        .duties {
            list-style: none;
        }
        .duties li {
            display: flex;
            gap: 10px;
            padding: 7px 0;
            border-bottom: 1px dashed #bed0e3;
        }
        .duties li i {
            color: #2563eb;
            width: 22px;
        }

        /* Слайдер портфолио */
        .slider-section {
            margin: 60px 0 30px;
        }
        .slider-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 50px;
        }
        .slider-wrapper {
            overflow: hidden;
            border-radius: 32px;
            box-shadow: 0 25px 40px -15px #1f3a57;
            background: #f5f9ff;
            border: 2px solid white;
        }
        .slider-track {
            display: flex;
            transition: transform 0.4s ease-in-out;
        }
        .slide {
            flex: 0 0 100%;
            aspect-ratio: 16/9;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #eaf0f8;
            padding: 10px;
        }
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 20px;
            box-shadow: 0 8px 18px rgba(0,20,40,0.2);
        }
        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            border-radius: 60px;
            background: white;
            border: 2px solid #2563eb;
            color: #2563eb;
            font-size: 1.8rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 16px rgba(0,50,100,0.2);
            transition: 0.2s;
            z-index: 10;
        }
        .slider-btn:hover {
            background: #2563eb;
            color: white;
        }
        .slider-btn.prev {
            left: 0;
        }
        .slider-btn.next {
            right: 0;
        }
        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 20px;
        }
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 20px;
            background: #c0d1e2;
            cursor: pointer;
            transition: 0.2s;
        }
        .dot.active {
            background: #2563eb;
            width: 30px;
        }

        /* Контактная информация классного руководителя */
        .teacher-contact {
            background: linear-gradient(135deg, #e9f0ff, #d6e4ff);
            border-radius: 48px;
            padding: 30px 40px;
            margin: 60px 0 30px;
            display: flex;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
            border: 2px solid white;
            box-shadow: 0 20px 30px -10px #a0b9d9;
        }
        .teacher-icon {
            background: #2563eb;
            color: white;
            width: 90px;
            height: 90px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            box-shadow: 0 15px 20px -8px #2563eb;
        }
        .teacher-info h3 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #0b2b50;
            margin-bottom: 15px;
        }
        .teacher-info p {
            font-size: 1.5rem;
            margin: 8px 0;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .teacher-info i {
            color: #2563eb;
            width: 30px;
            font-size: 1.8rem;
        }
        .teacher-info a {
            color: #1e3a5f;
            text-decoration: none;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .teacher-info a:hover {
            border-bottom-color: #2563eb;
        }

        /* Футер */
        .footer {
            background: #1f344a;
            color: #cddeef;
            padding: 30px;
            text-align: center;
            border-radius: 30px 30px 0 0;
            margin-top: 30px;
        }

        @media (max-width: 800px) {
            .hero h1 { font-size: 3.5rem; }
            .hero { padding-top: 40px; }
            .birthday-container { grid-template-columns: repeat(2,1fr); }
            .header { flex-direction: column; align-items: start; }
            .slider-container { padding: 0 40px; }
            .teacher-contact { flex-direction: column; text-align: center; }
            .teacher-info p { justify-content: center; }
        }
        @media (max-width: 500px) {
            .birthday-container { grid-template-columns: 1fr; }
            .student-grid { grid-template-columns: 1fr 1fr; }
        }
