/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif; /* Modern, professional font */
    line-height: 1.6;
    color: #333;
    background-color: #fafafa; /* Lighter background for better contrast */
    background-image: linear-gradient(135deg, #fafafa 25%, #f0f0f0 25%, #f0f0f0 50%, #fafafa 50%, #fafafa 75%, #f0f0f0 75%, #f0f0f0);
    background-size: 30px 30px; /* Larger, subtler pattern */
}

.container {
    max-width: 900px; /* Slightly wider for a more spacious feel */
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

header {
    margin-bottom: 40px;
}

.logo {
    margin-bottom: 20px;
}

.logo h1 {
    color: #4a148c;
    font-size: 2.5em;
    font-weight: bold;
    letter-spacing: 2px; /* Slight spacing for a modern look */
    text-transform: uppercase; /* For a bold, branded feel */
}

h2 {
    color: #4a148c;
    font-size: 2.2em;
    margin-bottom: 15px;
    font-weight: 500;
    animation: fadeIn 1.5s ease-in;
}

p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 20px;
}

.form-container {
    background-color: #fff;
    border-radius: 12px; /* Slightly more rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Softer, more pronounced shadow */
    padding: 30px;
    margin-bottom: 40px;
    overflow: hidden;
    border: 2px solid #e0e0e0; /* Subtle border for definition */
    transition: transform 0.3s ease; /* Subtle hover effect */
}

.form-container:hover {
    transform: translateY(-5px); /* Lift effect on hover for interactivity */
}

iframe {
    border: none;
    width: 100%;
    height: 1000px;
    min-height: 800px;
}

footer {
    font-size: 0.9em;
    color: #666;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0; /* Subtle line for separation */
}

footer a {
    color: #4a148c;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #6a1b9a; /* Slightly lighter purple on hover */
    text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        padding: 20px 10px;
    }

    .logo h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.8em;
    }

    .form-container {
        padding: 15px;
    }
}

/* Ensure Roboto font is loaded (add to <head> in HTML if not already) */
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
