* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Arial, sans-serif;
        }
        
        body {
            background-color: #0a0a0a;
            color: #e0e0e0;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header & Banner */
        header {
            background: linear-gradient(to right, #000000, #1a0000);
            padding: 20px 0;
            border-bottom: 3px solid #b30000;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #ffffff;
            text-shadow: 0 0 10px rgba(179, 0, 0, 0.7);
        }
        
        .logo span {
            color: #b30000;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: #e0e0e0;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: #b30000;
        }
        
        .banner {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(26, 0, 0, 0.9)), url('https://images.unsplash.com/photo-1620712943543-bcc4688e7485?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            height: 500px;
            display: flex;
            align-items: center;
            text-align: center;
            position: relative;
            margin-bottom: 60px;
        }
        
        .banner-content {
            width: 100%;
            padding: 0 20px;
        }
        
        .banner h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: #ffffff;
            text-shadow: 0 0 15px rgba(179, 0, 0, 0.8);
        }
        
        .banner p {
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #f0f0f0;
        }
        
        .btn {
            display: inline-block;
            background-color: #b30000;
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s, transform 0.3s;
        }
        
        .btn:hover {
            background-color: #ff1a1a;
            transform: translateY(-3px);
        }
        
        /* Main Content */
        .section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 50px;
            color: #ffffff;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background-color: #b30000;
            margin: 15px auto 0;
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }
        
        .feature-card {
            background-color: #1a0a0a;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            border: 1px solid #330000;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(179, 0, 0, 0.2);
        }
        
        .feature-icon {
            font-size: 50px;
            color: #b30000;
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #ffffff;
        }
        
        .feature-card p {
            color: #cccccc;
            font-size: 16px;
        }
        
        /* Image Gallery */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 80px;
        }
        
        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            height: 220px;
            position: relative;
            border: 2px solid #330000;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(179, 0, 0, 0.8);
            color: white;
            padding: 10px;
            font-size: 14px;
            text-align: center;
        }
        
        /* Educational Content */
        .education-content {
            background-color: #1a0a0a;
            border-radius: 10px;
            padding: 40px;
            margin-bottom: 80px;
            border: 1px solid #330000;
        }
        
        .education-content h2 {
            color: #ffffff;
            margin-bottom: 25px;
            font-size: 32px;
        }
        
        .education-content p {
            margin-bottom: 20px;
            font-size: 18px;
            color: #cccccc;
        }
        
        .highlight {
            color: #ff4d4d;
            font-weight: bold;
        }
        
        /* Footer */
        footer {
            background-color: #000000;
            padding: 40px 0;
            border-top: 3px solid #b30000;
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: bold;
            color: #ffffff;
            margin-bottom: 20px;
        }
        
        .footer-logo span {
            color: #b30000;
        }
        
        .disclaimer {
            max-width: 800px;
            margin: 20px auto;
            padding: 20px;
            background-color: #1a0a0a;
            border-radius: 8px;
            border-left: 4px solid #b30000;
        }
        
        .disclaimer h3 {
            color: #ff4d4d;
            margin-bottom: 10px;
        }
        
        .disclaimer p {
            color: #aaaaaa;
            font-size: 14px;
            line-height: 1.5;
        }
        
        .copyright {
            margin-top: 30px;
            color: #888888;
            font-size: 14px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 20px;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0 10px;
            }
            
            .banner h1 {
                font-size: 36px;
            }
            
            .banner p {
                font-size: 18px;
            }
            
            .section-title {
                font-size: 30px;
            }
        }