
        /* Global Styles */
        body {
            font-family: 'Roboto', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f8f8f8;
            color: #333;
        }

        h1, h2 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            color: #2c3e50;
        }

        /* Header Section with Image Background */
        header {
            background-image: url('//ueeshop.ly200-cdn.com/u_file/UPBD/UPBD881/2412/23/photo/308778e7fba7edf0acba8b60da9af6c.jpg'); /* Your image URL */
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            color: #fff;
            padding: 80px 20px;
            text-align: center;
            position: relative;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        /* Semi-transparent overlay for better contrast */
        header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.2); /* Black with 40% opacity */
            z-index: 0;
        }

        .header-text {
            position: relative;
            z-index: 1; /* Ensure the text stays above the overlay */
            color: white;
        }

        header h1 {
            font-size: 50px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #fff;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Add text shadow for better contrast */
        }

        header p {
            font-size: 20px;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3); /* Add text shadow */
        }

        /* Main Content Section */
        .container {
            width: 80%;
            margin: 0 auto;
            padding: 40px 0;
        }

        .qualifications {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .qualification-item {
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            flex-basis: 30%;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .qualification-item:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        }

        .qualification-item img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .qualification-item h2 {
            font-size: 24px;
            margin-bottom: 15px;
            color:#0044A6;
        }

        .qualification-item p {
            font-size: 16px;
            color: #555;
            margin-bottom: 20px;
        }

        .download-btn {
            display: inline-block;
            padding: 12px 30px;
            background-color:#0044A6;
            color: white;
            font-size: 16px;
            text-decoration: none;
            border-radius: 30px;
            transition: background-color 0.3s ease;
        }

        .download-btn:hover {
            background-color: #0044A6;
        }

        /* Footer Section */
        footer {
            background-color: #1a202c;
            color: #fff;
            text-align: center;
            padding: 20px;
            position: relative;
        }

        footer p {
            margin: 0;
            font-size: 16px;
        }

        /* Mobile Responsiveness */
        @media screen and (max-width: 768px) {
            .qualification-item {
                flex-basis: 100%;
            }
        }

    