  /* CSS Family template */
<meta charset="utf-8">
  <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: rgba(237, 21, 60, 0.48)
			/*linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
            min-height: 100vh;
            color: #333;
        }

        .container {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            max-width: 1200px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        /* Banner */
        .banner {
            background:  rgba(237, 21, 60, 0.48)
			/*near-gradient(90deg, #4facfe 0%, #00f2fe 100%);*/
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 4px 20px rgba(206, 50, 79, 0.48);
        }

        .banner h1 {
            font-size: 2.5rem;
            font-weight: 300;
            letter-spacing: 2px;
            text-shadow: 0 2px 4px rgba(206, 50, 79, 0.48)
			;
        }

        /* Main Content Area */
        .main-content {
            display: flex;
            flex: 1;
        }

        /* Sidebar */
        .sidebar {
            width: 280px;
            background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 2rem 0;
            box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
        }

        .menu-item {
            display: block;
            padding: 1rem 2rem;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
            font-weight: 500;
            cursor: pointer;
        }

        .menu-item:hover, .menu-item.active {
            background: rgba(255, 255, 255, 0.1);
            border-left-color: #4facfe;
            transform: translateX(5px);
            box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1);
        }

        /* Body Content */
        .body-content {
            flex: 1;
            padding: 2rem;
            background: white;
            overflow-y: auto;
        }

        .content-section {
            display: none;
            animation: fadeIn 0.5s ease-in;
        }

        .content-section.active {
            display: block;
        }

        .content-section h2 {
            color: #667eea;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            font-weight: 300;
        }

        .content-section p {
            line-height: 1.8;
            margin-bottom: 1rem;
            color: #666;
            font-size: 1.1rem;
        }

        .info-card {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1rem 0;
            box-shadow: 0 4px 15px rgba(206, 50, 79, 0.5));
            border-left: 4px solid #4facfe;
        }

        .info-card h3 {
            color: #667eea;
            margin-bottom: 0.5rem;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            padding: 0.5rem;
            cursor: pointer;
            position: absolute;
            top: 1.5rem;
            left: 1.5rem;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .banner h1 {
                font-size: 2rem;
            }

            .main-content {
                flex-direction: column;
            }

            .sidebar {
                width: 100%;
                order: 2;
                transform: translateX(-100%);
                position: fixed;
                top: 0;
                left: 0;
                height: 100vh;
                z-index: 1000;
                transition: transform 0.3s ease;
            }

            .sidebar.open {
                transform: translateX(0);
            }

            .mobile-menu-toggle {
                display: block;
            }

            .body-content {
                padding: 1rem;
                order: 1;
            }

            .container {
                margin: 0;
                border-radius: 0;
            }
        }

        /* Overlay for mobile */
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(206, 50, 79, 0.5);
            z-index: 999;
        }

        .overlay.active {
            display: block;
        }
    </style>