  * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: url('../Photos/H.png') no-repeat center center fixed;
            background-size: cover;
            color: #ffffff;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .container {
            background-color: rgb(54 76 155 / 62%);
            color: #ffffff;
            border-radius: 16px;
            box-shadow: 0 0 20px rgba(80, 80, 255, 0.58);
            width: 800px;
            padding: 40px;
            text-align: center;
            animation: fadeIn 1s ease-in-out;
            display: flex;
            flex-direction: row;
            gap: 30pxX;
            align-items: center;
            justify-content: center;
        }
        .container img{
            width: 350px;
            height: 350px;
            filter: drop-shadow(0 0 10px rgb(239, 239, 239));
        
        }
        .Container2{
                     display: flex;
            flex-direction: column;
        }
        b{
            color: #7bb7f8;
        }

        h1, h2 {
            color: #ffffff;
        }


        .section {
            margin: 30px 0;
   
        }

        .button-group {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            margin-top: 10px;
        }

        button {
            background-color: #007bff;
            color: #fff;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
            min-width: 150px;
        }

        button:hover {
            background-color: #0056b3;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 86, 179, 0.3);
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @media (max-width: 500px) {
            .container {
                padding: 25px;
            }

            button {
                font-size: 14px;
                padding: 10px 20px;
                min-width: 120px;
            }
        }