.information-panel {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
}

.information-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.vibrate-image {
    position: absolute;
    animation: vibrate 7s linear infinite;
}

@keyframes vibrate {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(5px); }
    50% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}



html {
    scroll-behavior: smooth;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.blue-separator {
    width: 100%;
    height: 15px;
    background-color: #2EAEE6;
    margin: -48px 0;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0px;
    padding: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
