   body {
            margin: 0;
            font-family: 'Segoe UI', sans-serif;
            background: #f4f4f4;
            color: #333;
        }

        .navbar {
            display: flex;
            position: sticky;
            top: 0;
            z-index: 10;
            justify-content: space-between;
            align-items: center;
            background-color: white;
            color: black;
            box-shadow: 2px 2px 13px 0px #2e2e2e;
            padding: 0.8rem 2rem;
            flex-wrap: wrap;
        }

        .logo-div {
            display: flex;
            gap: 10px;
            justify-content: center;
            align-items: center;
            font-weight: 700;
            font-size: 20px;
        }

        .nav-links {
            display: flex;
            gap: 1.5rem;
        }

        .nav-links a {
            color: black;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 20px;
        }

        .nav-links a:hover {
            color:#035efc;
        }

        .navbar img {
            height: 50px;
            width: auto;
            border-radius: 50%;
        }

        .menu-toggle {
            display: none;
            font-size: 28px;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .nav-links {
                flex-direction: column;
                width: 100%;
                display: none;
                background-color: white;
                padding: 1rem 0;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links a {
                padding: 10px 20px;
                border-top: 1px solid #eee;
            }

            .menu-toggle {
                display: block;
                color: black;
            }
        }

        header {

            padding: 30px;
            text-align: center;
        }

        .container {
            max-width: 1100px;
            margin: auto;
            padding: 20px;
        }

        .plan-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .plan-card {
            position: relative;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .plan-card:hover {
            transform: translateY(-5px);
        }

        .plan-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .plan-content {
            padding: 20px;
        }

        .plan-content h3 {
            margin-top: 0;
            color: #2c3e50;
        }

        .plan-content p {
            line-height: 1.6;
        }

        .custom-btn {
            /* background: linear-gradient(to right top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)); */
            background-color: rgb(48, 191, 91);
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            cursor: pointer;
            transition: transform 0.2s ease;
        }

        .divbuton {
            position: absolute;
            top: 0;
            right: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
        }

        .custom-btn:hover {
            transform: scale(1.05);
        }


        footer {
            background: #2c3e50;
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 40px;
        }



        footer {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            background: #2c3e50;
            text-align: center;
            padding: 15px;
            margin-top: 40px;
            height: 300px;
            padding: 20px;
            text-align: center;
            font-size: 14px;

        }