        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

        body {
            background-color: #333;
            font-family: 'Montserrat', sans-serif;
            margin: 0;
            padding: 0;
            color: #fff;
        }

        header {
            background-image: url('image/Wallpaper_MCPE.jpg');
            background-size: cover;
            background-position: center;
            height: 500px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            animation: fadeInDown 2s ease;
        }

        header h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        header img {
            width: 400px;
            height: auto;
            border-radius: 50%;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
            animation: pulse 2s infinite;
        }

        .sections-container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }

        .section {
            max-width: 300px;
            margin: 20px;
            padding: 20px;
            background-color: #444;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 2s ease;
        }

        .section img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto 20px;
            border-radius: 5px;
        }

        .section h2 {
            text-align: center;
            margin-bottom: 20px;
            color: #8bc34a;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        .section p {
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .cta-btn {
            display: block;
            width: 200px;
            margin: 0 auto;
            padding: 15px;
            background-color: #8bc34a;
            color: #fff;
            text-decoration: none;
            text-align: center;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            transition: background-color 0.3s ease;
        }

        .cta-btn:hover {
            background-color: #689f38;
        }

        footer {
            background-color: #222;
            color: #fff;
            text-align: center;
            padding: 20px;
        }

        @keyframes fadeInDown {
            0% {
                opacity: 0;
                transform: translateY(-60px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(60px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1.1);
            }
            50% {
                transform: scale(1.4);
            }
            100% {
                transform: scale(1.1);
            }
        }

        @media (max-width: 768px) {
            header {
                height: 400px;
            }

            header h1 {
                font-size: 3rem;
            }

            header img {
                width: 300px;
            }
        }