/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    text-align: center;
    line-height: 1.6;
    padding: 20px;
}

/* Main Content */
.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive iFrame */
iframe {
    width: 100%;
    height: 500px;
    border: none;
}

/* Footer */
footer {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

/* Links */
a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    iframe {
        height: 400px;
    }
}
