
        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg); }
            100% { transform: translateY(-20px) rotate(360deg); }
        }

        .team-photo {
            text-align: center;
            padding: 40px 20px;
            background: rgba(24, 37, 4, 0.2);
            margin: 0 0px;
            border-radius: 15px;
            margin-bottom: 60px;
            margin-top: 5rem;
        }

        .team-photo img {
            width: 100%;
            aspect-ratio: 16 / 9;
            max-width: 1000px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(3, 2, 16, 0.3);
            transition: transform 0.3s ease;
        }

        .team-photo img:hover {
            transform: scale(1.05);
            box-shadow: 0 25px 60px rgba(128, 255, 54, 0.3);
        }

        .team-photo h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: #f8f9fa;
            font-weight: bold;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .instructor {
            display: flex;
            align-items: center;
            margin-bottom: 80px;
            background: rgba(23, 24, 4, 0.2);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(3, 2, 16, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            backdrop-filter: blur(10px);
            color: whitesmoke
        }

        .instructor:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(128, 255, 54, 0.3);
        }

        .instructor-photo {
            width: 300px;
            height: 400px;
            object-fit: cover;
            border: 5px solid rgb(128, 255, 54);
            box-shadow: 0 10px 30px rgba(128, 134, 68, 0.929);
            transition: transform 0.3s ease;
        }


        .instructor-info {
            flex: 1;
            padding: 0 40px;
        }

        .instructor-name {
            font-size: 2.5rem;
            color: f8f9fa(128, 255, 54);
            margin-bottom: 15px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .instructor-title {
            font-size: 1.3rem;
            color: #cccccc;
            margin-bottom: 20px;
            font-style: italic;
        }

        .experience {
            background: linear-gradient(45deg, #07a404, #e7f705);
            padding: 15px 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .specialty {
            color: #ffffff;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .story {
            background: rgba(97, 97, 13, 0.2);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid rgb(234, 249, 25);
            font-style: italic;
            line-height: 2;
        }

        .story-title {
            font-weight: bold;
            color: rgb(128, 255, 54);
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .reverse {
            flex-direction: row-reverse;
        }

        @media (max-width: 768px) {
            .instructor {
                flex-direction: column;
                text-align: center;
                padding: 30px 20px;
            }

            .reverse {
                flex-direction: column;
            }

            .instructor-info {
                padding: 30px 0 0 0;
            }

            .header h1 {
                font-size: 2.5rem;
            }

            .instructor-name {
                font-size: 2rem;
            }
        }

        .belt-decoration {
            display: inline-block;
            width: 20px;
            height: 3px;
            background: rgb(128, 255, 54);
            margin: 0 5px;
            border-radius: 2px;
        }

    