            .wrap > .itInfo {
                height: auto;
                min-height: 100vh;
                background-size: cover;
                background-repeat: no-repeat;
                background-position: center;
                position: relative;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                padding-bottom: 60px;
            }

            .award,
            .highlight,
            .itButtons {
                transform: translateY(50px);
                opacity: 0;
                transition: transform 1s ease, opacity 1s ease;
            }

            .certification {
                width: 100%;
            }

            .certification p {
                margin: 0;
                padding: 10px;
            }

            .highlight {
                position: relative;
                font-size: 3em;
                font-weight: bold;
                color: #ffffff;
                text-transform: uppercase;
                left: 60px;
                top: 200px;
                text-indent: 12px;
                font-family: sans-serif;
                letter-spacing: 0.05em;
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
                margin-bottom: 0.5em;
            }

            .award {
                font-size: 4em;
                font-weight: bold;
                color: #ffffff;
                margin-top: 15px;
                letter-spacing: 0.03em;
                left: 70px;
                position: absolute;
                top: 320px;
                text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.6);
                display: flex;
                align-items: center;
                line-height: 1.2;
                transition: 0.3s ease;
            }

            .wrap > .itInfo > .itButtons {
                display: flex;
                gap: 20px;
                margin-bottom: 20px;
                flex-wrap: wrap;
                max-width: 90%;
                left: 120px;
                position: relative;
            }

            .wrap > .itInfo > .itButtons > .itButton1,
            .wrap > .itInfo > .itButtons > .itButton2 {
                border-radius: 15px;
                text-decoration: none;
                position: relative;
                overflow: hidden;
                transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
                padding: 10px 20px;
                font-weight: bold;
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
                z-index: 1;
                display: inline-block;
                text-align: center;
                line-height: 40px;
                background-color: transparent;
                border: 2px solid #fff;
                color: #fff;
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            }

            .wrap > .itInfo > .itButtons > .itButton1:hover,
            .wrap > .itInfo > .itButtons > .itButton2:hover {
                background-color: #4CAF50;
                color: white;
                cursor: pointer;
                transform: translateY(-5px) scale(1.05);
                box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
            }

            .wrap > .itInfo > .itButtons > .itButton1 .fa-arrow-right,
            .wrap > .itInfo > .itButtons > .itButton2 .fa-arrow-right {
                margin-left: 8px;
                transition: transform 0.3s ease;
            }

            .wrap > .itInfo > .itButtons > .itButton1:hover .fa-arrow-right,
            .wrap > .itInfo > .itButtons > .itButton2:hover .fa-arrow-right {
                transform: translateX(5px);
            }

            .inItButton1 {
                width: 100px;
                text-align: center;
                color: white;
                border-radius: 15px 0 0 15px;
                border: 1px solid #fff;
            }

            .inItButton2 {
                background-color: #ffffff;
                border-radius: 0 15px 15px 0;
                width: 35px;
            }
           
            .wrap > .itInfo img {
                position: relative;
                width: 20px;
                height: 20px;
                left: 4px;
                top: -1px;
            }

            .scroll-button {
                position: absolute;
                bottom: 20px;
                left: 50%;
                transform: translateX(-50%);
                width: 40px;
                height: 40px;
                border-radius: 50%;
                background-color: rgba(0, 0, 0, 0.4);
                color: white;
                display: flex;
                justify-content: center;
                align-items: center;
                cursor: pointer;
                font-size: 24px;
                z-index: 10;
                border: none;
                outline: none;
                transition: background-color 0.3s ease;
            }

            .scroll-button:hover {
                background-color: rgba(0, 0, 0, 0.7);
            }

            .scroll-button i {
                animation: bounce 2s infinite;
                outline: none;
            }

            .scroll-button:active,
            .scroll-button:focus {
                outline: none;
            }

            @keyframes bounce {
                0%, 100%, 20%, 50%, 80% { transform: translateY(0); }
                40% { transform: translateY(-10px); }
                60% { transform: translateY(-5px); }
            }

@media (max-width: 1024px) {
    .wrap > .itInfo {
        height: auto;
        min-height: 0;
        padding: 60px 40px;
        justify-content: center;
        align-items: flex-start;
        text-align: left;
        margin-top: 70px;
    }

    .highlight, .award, .wrap > .itInfo > .itButtons {
        position: static;
        transform: none;
        opacity: 1;
        text-align: left;
        width: 100%;
        margin: 0 0 25px 0;
        top: auto;
        left: auto;
    }

    .highlight {
        font-size: 2.2em;
        line-height: 1.3;
        margin-bottom: 20px;
        text-indent: 0;
    }

    .award {
        font-size: 2.8em;
        line-height: 1.2;
    }

    .wrap > .itInfo > .itButtons {
        justify-content: flex-start;
        gap: 20px;
        margin-top: 15px;
    }

    .wrap > .itInfo > .itButtons > .itButton1,
    .wrap > .itInfo > .itButtons > .itButton2 {
        font-size: 1em;
        padding: 10px 20px;
        line-height: 1.5;
    }

    .scroll-button {
        display: none;
    }
}

@media (max-width: 768px) {
    .wrap > .itInfo {
        height: auto;
        min-height: 0;
        padding: 40px 20px;
        justify-content: center;
        align-items: flex-start;
        text-align: left;
        margin-top: 60px;
    }

    .highlight, .award, .wrap > .itInfo > .itButtons {
        position: static;
        transform: none;
        opacity: 1;
        text-align: left;
        width: 100%;
        margin: 0 0 20px 0;
    }

    .highlight {
        font-size: 1.5em;
        line-height: 1.3;
        margin-bottom: 10px;
        text-indent: 0;
    }

    .award {
        font-size: 1.9em;
        line-height: 1.2;
    }

    .wrap > .itInfo > .itButtons {
        justify-content: flex-start;
        gap: 15px;
        margin-top: 10px;
    }

    .wrap > .itInfo > .itButtons > .itButton1,
    .wrap > .itInfo > .itButtons > .itButton2 {
        font-size: 0.9em;
        padding: 8px 18px;
        line-height: 1.5;
    }
    
    .scroll-button {
        display: none;
    }
}

@media (max-width: 480px) {
    .wrap > .itInfo {
        padding: 30px 15px;
        margin-top: 50px;
    }
    .highlight {
        font-size: 1.2em;
    }
    .award {
        font-size: 1.6em;
    }
    .wrap > .itInfo > .itButtons > .itButton1,
    .wrap > .itInfo > .itButtons > .itButton2 {
        font-size: 0.8em;
        padding: 6px 15px;
    }
}