
        /* Main Content Styles */
        .main-container {
            width: 100%;
            max-width: 1600px;
            margin: 50px auto 100px auto;
            padding: 0 30px;
            display: flex;
            gap: 5%;
            flex-grow: 1;
        }

        .content-left {
            flex: 2;
            padding: 20px;
        }

        .content-left h1 {
            color: #1e3a8a;
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 20px;
            background-color: khaki;
            border: 1px solid black;
            border-radius: 10px;
            padding: 15px;
            text-align: center;
        }

        .content-left p {
            color: #1a1a1a;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .download-button {
            display: inline-flex;
            padding: 24px 30px;
            background-color: #3b82f6;
            color: #ffffff;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 500;
            transition: background-color 0.3s, color 0.3s;
            width: 100%;
            text-align: center;
	    justify-content: space-between;
            margin-bottom: 20px;
        }

        .download-button:hover {
            background-color: green;
            color: #ffffff;
        }

        .content-right {
            flex: 1;
            background: linear-gradient(135deg, #ffffff, #e0e7ff);
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        }

        .content-right h2 {
            color: #1e3a8a;
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 20px;
            text-align: center;
        }

        .other-plans-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .other-plans-item {
            
            background: #ffffff;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-decoration: none;
            transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s, color 0.3s;
        }

        .other-plans-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
            background-color: rgba(255, 255, 255, 0.1);
            color: #ff7800;
        }

        .other-plans-item .icon {
            
            font-size: 20px;
            margin-right: 10px;
            vertical-align: middle;
            color: #1e3a8a;
        }

        .other-plans-item:hover .icon {
            color: #ff7800;
        }

        .other-plans-item .subject {
            color: #1e3a8a;
            font-size: 16px;
            font-weight: 500;
            vertical-align: middle;
        }

        .other-plans-item:hover .subject {
            color: #ff7800;
        }

        .other-plans-item span {
            
            font-size: 14px;
            color: #1e3a8a;
            margin-top: 5px;
        }

        .other-plans-item:hover span {
            color: #ff7800;
        }


        /* Responsive Design */
        @media (max-width: 768px) {
            .main-container {
                flex-direction: column;
                margin-bottom: 50px;
                gap: 30px;
            }

            .content-left, .content-right {
                width: 100%;
padding:0px;
            }

            .other-plans-item {
                padding: 15px;
            }