        /* General Styles */
        body {
            margin: 0;
            font-family: 'Roboto', sans-serif;
            background-color: #f9fafc;
            color: #333;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        header .logo {
            font-size: 28px;
            font-weight: bold;
            color: #007bff;
        }
        nav ul {
            list-style: none;
            display: flex;
            gap: 15px;
            margin: 0;
            padding: 0;
        }
        nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        nav ul li a:hover {
            color: #007bff;
        }
        /* Hamburger Button */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 25px;
            height: 20px;
            cursor: pointer;
        }
        .hamburger span {
            display: block;
            width: 100%;
            height: 3px;
            background-color: #333;
            border-radius: 3px;
        }

        /* Hero Section */
        /* .hero {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 60px 0;
        }
        .hero-text {
            max-width: 50%;
        }
        .hero-text h1 {
            font-size: 48px;
            margin: 10px 0;
        }
        .hero-text h1 span {
            color: #007bff;
        }
        .hero-text p {
            font-size: 18px;
            margin: 10px 0;
        }
        .hero-text .btn {
            display: inline-block;
            margin-top: 20px;
            padding: 12px 25px;
            background-color: #007bff;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
        .hero-text .btn:hover {
            background-color: #0056b3;
        }
        .hero-image img {
            max-width: 100%;
            border-radius: 15px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        } */

        /* Social Icons */
        .social-icons {
            position: fixed;
            bottom: 20px;
            right: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .social-icons a {
            color: #007bff;
            font-size: 20px;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .social-icons a:hover {
            color: #0056b3;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
                gap: 10px;
                background-color: #fff;
                position: absolute;
                top: 60px;
                right: 0;
                width: 200px;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
                padding: 10px;
                border-radius: 5px;
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: flex;
            }
            .social-icons {
                flex-direction: row;
                bottom: 10px;
                right: 50%;
                transform: translateX(50%);
            }
        }