        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            background-color: #fafafa;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Navigation */
        nav {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 20px 250px;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 0 auto;
        }
        
        .nav-logo img {
            height: 40px;
        }
        
        .nav-links {
            display: flex;
            gap: 25px;
        }
        
        .nav-links a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: #ff6b6b;
        }
        
        .nav-button {
            background-color: #ff6b6b;
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: 600;
        }
        
        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 24px;
            color: #333;
        }
        
        /* Mobile Navigation */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background: white;
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: left 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .mobile-nav.active {
            left: 0;
        }
        
        .mobile-nav-header {
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #eee;
        }
        
        .mobile-nav-logo {
            height: 40px;
        }
        
        .mobile-nav-close {
            font-size: 24px;
            cursor: pointer;
            color: #333;
        }
        
        .mobile-nav-content {
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            flex: 1;
        }
        
        .mobile-nav-content a {
            text-decoration: none;
            color: #333;
            font-size: 16px;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }
        
        .mobile-nav-content .nav-button {
            margin-top: 10px;
            text-align: center;
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }
        
        .overlay.active {
            opacity: 1;
            pointer-events: all;
        }
        
        /* Main Content */
        .about-container {
            max-width: 1000px;
            margin: 40px auto;
            padding: 0 20px;
        }
        
        .about-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .about-header h1 {
            font-size: 2.5rem;
            color: orangered;
            margin-bottom: 15px;
        }
        
        .about-header p {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .about-section {
            background: white;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .about-section h2 {
            color: #ff6b6b;
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        
        .about-section h3 {
            color: #333;
            margin: 20px 0 10px;
            font-size: 1.3rem;
        }
        
        .about-section p, .about-section ul {
            margin-bottom: 15px;
            color: #555;
        }
        
        .about-section ul {
            padding-left: 20px;
        }
        
        /* Footer */
        footer {
            background: orangered;
            color: white;
            padding: 30px 0;
            text-align: center;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
        }
        
        .footer-social {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .footer-social a {
            color: white;
            font-size: 20px;
        }
        
        .footer-copyright {
            font-size: 14px;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            nav {
                padding: 15px 50px;
            }
            
            .nav-links {
                display: none;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .about-header h1 {
                font-size: 2rem;
            }
            
            .about-section {
                padding: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .about-header h1 {
                font-size: 1.8rem;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 10px;
            }
        }
