iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

iframe:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    transform: scale(1.01);
}

@media (max-width: 768px) {
    iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    iframe {
        height: 200px;
    }
}