/* Base styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    color: #333;
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

h1 {
    margin: 0;
    font-size: 2.5rem;
}

header p {
    margin: 0.5rem 0 0;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Iframe container */
.iframe-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    height: 80vh;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
    background-color: white;
}

/* Footer */
footer {
    text-align: center;
    padding: 1.5rem;
    background-color: #fff;
    border-top: 1px solid #eaeaea;
    font-size: 0.9rem;
}

footer a {
    color: #2575fc;
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .iframe-container {
        height: 70vh;
        margin: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
}

