        /* body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 20px;
            background-color: #f0f0f0;
        } */
        .container2 {
            max-width: 1200px;
            margin: 0 auto;
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        h1 {
            text-align: center;
            margin-bottom: 30px;
        }
        .zappigo {
            color: #04c758;
            font-weight: bold;
            
        }
        .options {
            display: flex;
            justify-content: space-between;
            gap: 20px;
        }
        .option {
            flex: 1;
            background-color: #f9f9f9;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 0 5px rgba(0,0,0,0.1);
        }
        .option img {
            width: 100%;
            height: 370px;
            object-fit: cover;
        }
        .option-content {
            padding: 20px;
        }
        .option h2 {
            margin-top: 0;
        }
        .option p {
            color: #666;
            margin-bottom: 10px;
        }
        .learn-more {
            color: #8a2be2;
            text-decoration: none;
            border: 2px solid rgb(195, 182, 182);
            border-radius: 3px;
            height: 50px;
            width: 150px;
        }
        /* .footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        } */
        /* .footer-logo {
            font-size: 24px;
            font-weight: bold;
        }
        .cta {
            background-color: #f0f0f0;
            padding: 10px 20px;
            border-radius: 5px;
        } */
        /* .nav {
            display: flex;
            gap: 20px;
        }
        .nav a {
            text-decoration: none;
            color: #333;
            font-weight: bold;
        } */

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #000000;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 5px 43px;
        }
        
        .logo img{
            height: 60px;
            width: 60px;
            margin-left: 10px;
            border-radius: 50%;
            margin-right: 10px;
        }
        
        .logo a {
            color: white;
            text-decoration: none;
            font-size: 30px;
        }
        
        .nav-links {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
        }
        
        .nav-links li {
            position: relative;
        }
        
        .nav-links a {
            color: white;
            padding: 10px 40px;
            text-decoration: none;
            display: block;
        }
        
        .nav-links a:hover {
            background-color: #555;
            border-radius: 10px;
        }
        
        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #333;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .dropdown-menu li {
            width: 175px;
        }
        
        .dropdown-menu a {
            padding: 10px 15px;
        }
        
        .dropdown:hover .dropdown-menu {
            display: block;
        }
        
        .dropdown-menu a:hover {
            background-color: #555;
        }
        