/* CSS Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        
        /* Header & Navigation */
        header {
            background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-container {
            text-align: center;
            flex: 1;
        }
        
        .logo {
            font-size: 2.2rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            animation: logoPulse 3s infinite ease-in-out;
        }
        
        .logo-icon {
            font-size: 2.5rem;
            margin-right: 10px;
            animation: logoSpin 20s infinite linear;
        }
        
        @keyframes logoPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        @keyframes logoSpin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .logo-text {
            font-size: 1.8rem;
            margin: 0;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        nav a:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 6rem 2rem;
            margin-bottom: 3rem;
        }
        
        .hero h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease-out;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            animation: fadeInUp 1s ease-out 0.3s both;
        }
        
        .btn {
            display: inline-block;
            background: linear-gradient(to right, #26d0ce, #1a2980);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(26, 41, 128, 0.3);
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease-out 0.6s both;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(26, 41, 128, 0.4);
        }
        
        /* Main Content */
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem 3rem;
        }
        
        /* Text Sections */
        .section-text {
            background-color: white;
            border-radius: 10px;
            padding: 2.5rem;
            margin-bottom: 3rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .section-text.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .section-text h2 {
            color: #1a2980;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #26d0ce;
            font-size: 2rem;
        }
        
        .section-text h3 {
            color: #1a2980;
            margin: 1.5rem 0 1rem;
            font-size: 1.5rem;
        }
        
        .section-text p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.7;
        }
        
        /* Table Styles */
        .table {
            overflow-x: auto;
            margin: 2rem 0;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
        }
        
        thead {
            background: linear-gradient(to right, #1a2980, #26d0ce);
            color: white;
        }
        
        th {
            padding: 1rem;
            text-align: left;
            font-weight: 600;
        }
        
        tbody tr {
            border-bottom: 1px solid #eee;
            transition: background-color 0.3s ease;
        }
        
        tbody tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        
        tbody tr:hover {
            background-color: #e9f7fe;
        }
        
        td {
            padding: 1rem;
        }
        
        /* List Styles */
        ol, ul {
            margin: 1.5rem 0 1.5rem 2rem;
        }
        
        .styled-list {
            margin: 2rem 0;
        }
        
        .styled-list li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
            opacity: 0;
            transform: translateX(-20px);
            animation: slideInListItem 0.5s ease forwards;
        }
        
        .styled-list li:nth-child(1) { animation-delay: 0.1s; }
        .styled-list li:nth-child(2) { animation-delay: 0.2s; }
        .styled-list li:nth-child(3) { animation-delay: 0.3s; }
        .styled-list li:nth-child(4) { animation-delay: 0.4s; }
        .styled-list li:nth-child(5) { animation-delay: 0.5s; }
        
        @keyframes slideInListItem {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .styled-list ol li {
            list-style-type: decimal;
            color: #1a2980;
            font-weight: 500;
        }
        
        .styled-list ul li {
            list-style-type: none;
        }
        
        .styled-list ul li:before {
            content: "✓";
            color: #26d0ce;
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        /* Features Section */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        
        .feature-card {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            font-size: 3rem;
            color: #26d0ce;
            margin-bottom: 1rem;
        }
        
        .feature-card h3 {
            color: #1a2980;
            margin-bottom: 1rem;
        }
        
        /* Sidebar */
        aside {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        aside h3 {
            color: #1a2980;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #26d0ce;
        }
        
        aside ul {
            list-style: none;
            margin-left: 0;
        }
        
        aside li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }
        
        aside li:before {
            content: "→";
            color: #26d0ce;
            position: absolute;
            left: 0;
        }
        
        /* Footer */
        footer {
            background: #1a2980;
            color: white;
            padding: 3rem 2rem;
            text-align: center;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            text-align: left;
        }
        
        .footer-section h4 {
            margin-bottom: 1rem;
            color: #26d0ce;
        }
        
        .footer-section ul {
            list-style: none;
            margin-left: 0;
        }
        
        .footer-section li {
            margin-bottom: 0.5rem;
        }
        
        .footer-section a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-section a:hover {
            color: #26d0ce;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin: 2rem 0;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: #26d0ce;
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* Scroll to Top Button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(to right, #26d0ce, #1a2980);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(26, 41, 128, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 99;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }
        
        .scroll-top.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(26, 41, 128, 0.5);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .header-container {
                flex-wrap: wrap;
            }
            
            .logo-container {
                order: 1;
                width: 100%;
                margin-bottom: 1rem;
            }
            
            nav {
                order: 3;
                width: 100%;
                display: none;
            }
            
            nav.active {
                display: block;
            }
            
            nav ul {
                flex-direction: column;
                background: rgba(26, 41, 128, 0.95);
                padding: 1rem;
                border-radius: 10px;
                margin-top: 1rem;
            }
            
            .menu-toggle {
                display: block;
                order: 2;
            }
            
            .hero h2 {
                font-size: 2.5rem;
            }
            
            .features {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                padding: 4rem 1.5rem;
            }
            
            .hero h2 {
                font-size: 2rem;
            }
            
            .section-text {
                padding: 1.5rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }