 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
            /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
            background: #fff;
            position: relative;
            min-height: 100vh;
        }
        p {
            font-size: 1.063rem;
            text-align: justify;
        }
        .container {
            max-width: 1100px;
            margin: 0 auto;
        }
        .copyright a {
            color: #fff;
        }
        #mobileMenu li {
            color: blue;
        }
        @media only screen and (min-width: 320px) and (max-width: 720px) {
            .container {
                padding: 0 20px;
            }
        }

        @media only screen and (min-width: 722px) and (max-width: 2720px) {
            .container {
                padding: 0 25px;
            }
        }
        
        /* Header */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.5rem;
            font-weight: bold;
            color: #2c3e50;
            text-decoration: none;
        }
        
        .logo img {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            object-fit: cover;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        
        .logo-text {
            font-size: 1.2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        @media (max-width: 768px) {
            .logo img {
                width: 35px;
                height: 35px;
            }
            
            .logo-text {
                font-size: 1.1rem;
            }
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            position: relative;
        }
        
        .nav-links > li {
            position: relative;
        }
        
        .nav-links a {
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .nav-links a:hover {
            color: #3498db;
        }
        
        /* Dropdown Menu */
        .dropdown {
            position: relative;
        }
        
        .dropdown-toggle {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        
        .dropdown-arrow {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }
        
        .dropdown:hover .dropdown-arrow {
            transform: rotate(180deg);
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            min-width: 160px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
            margin-top: 0.5rem;
        }
        
        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-menu li {
            list-style: none;
        }
        
        .dropdown-menu a {
            display: block;
            padding: 0.75rem 1rem;
            color: #2c3e50;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border-radius: 8px;
            margin: 0.25rem;
        }
        
        .dropdown-menu a:hover {
            background: rgba(52, 152, 219, 0.1);
            color: #3498db;
            transform: translateX(2px);
        }
        
        /* Mobile dropdown styles */
        .mobile-dropdown {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            margin: 0.5rem 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .mobile-dropdown-toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 1rem;
            color: #2c3e50;
            text-decoration: none;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .mobile-dropdown-toggle:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .mobile-dropdown-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .mobile-dropdown.active .mobile-dropdown-menu {
            max-height: 200px;
        }
        
        .mobile-dropdown.active .mobile-dropdown-toggle .dropdown-arrow {
            transform: rotate(180deg);
        }
        
        .mobile-dropdown-menu a {
            display: block;
            padding: 0.5rem 1rem 0.5rem 2rem;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-weight: 400;
            transition: all 0.3s ease;
            border-left: 2px solid transparent;
        }
        
        .mobile-dropdown-menu a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-left-color: #3498db;
            color: #fff;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            backdrop-filter: blur(20px);
            border-radius: 20px;
            margin: 2rem 0;
            padding: 2rem 2rem;
            text-align: center;
            color: white;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .hero h1 {
            font-size: 2.25rem;
            margin-bottom: 1rem;
            /*text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);*/
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        .features-section {
            padding: 10px 10px 15px 20px;
        }
        .features-section h2 {
            text-align: center; 
            color: #2c3e50; 
            margin-top: 1.5rem;
            margin-bottom: 1rem;
            font-size: 2rem;
        }
        .features-section h3 {
            text-align: center; 
            color: #2c3e50; 
            margin-top: 1rem;
            margin-bottom: 1rem;
            font-size: 1.75rem;

        }
        .features-section h4 {
            text-align: center; 
            color: #2c3e50; 
            margin-top: 1rem;
            margin-bottom: 1rem;
            font-size: 1.5rem;

        }
        .features-section ul {
            margin-top: 15px;
            margin-bottom: 20px;
        }
        .features-section li {
            margin-left: 30px;
        }
        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #3498db, #2980b9);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(52, 152, 219, 0.4);
        }
        
        /* Features Grid */
        .features-section {
            /*padding: 4rem 0;*/
            background: white;
            margin: 2rem 0;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .feature-card {
            /*background: linear-gradient(135deg, #f8f9fa, #e9ecef);*/
            background: linear-gradient(134deg, #ffffff, #f5f5f5);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid rgba(0, 0, 0, 0.1);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .feature-card h3 {
            color: #2c3e50;
            margin-bottom: 1rem;
        }
        
        /* Latest News */
        .news-section {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 4rem 0;
            margin: 2rem 0;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .news-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s;
        }
        
        .news-card:hover {
            transform: translateY(-5px);
        }
        
        .news-date {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: 0.5rem;
        }
        
        .news-card h3 {
            margin-bottom: 1rem;
        }
        
        .read-more {
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            border-bottom: 1px solid #fff;
            transition: opacity 0.3s;
        }
        
        .read-more:hover {
            opacity: 0.8;
        }
        
        /* Footer */
        footer {
            background: #1a1a1a;
            color: white;
            /*padding: 3rem 0;*/
            padding: 2rem 0;
            margin-top: 2rem;
            /*border-radius: 20px 20px 0 0;*/
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .footer-section h3 {
            margin-bottom: 1rem;
            color: #3498db;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section a {
            color: #ecf0f1;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: #3498db;
        }
        
        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #2c3e50;
        }
        
        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        
        .mobile-menu.active {
            display: block;
        }
        
        .mobile-menu ul {
            list-style: none;
            padding: 1rem 0;
        }
        
        .mobile-menu li {
            padding: 0.5rem 1rem;
        }
        
        .mobile-menu a {
            display: block;
            padding: 0.5rem 1rem;
            color: #2c3e50;
            text-decoration: none;
            font-weight: 500;
            transition: background-color 0.3s;
        }
        
        .mobile-menu a:hover {
            background-color: rgba(52, 152, 219, 0.1);
            border-radius: 8px;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .nav-links {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            nav {
                position: relative;
            }
            
            .features-grid,
            .news-grid {
                grid-template-columns: 1fr;
            }
            
            .hero {
                padding: 3rem 1rem;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .features-section,
            .news-section {
                padding: 3rem 0.1rem;
            }
        }