/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 28 2025 | 19:21:15 */
body.page-id-11291 {
    background-color: #f0f2f5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px;
    margin: 0;
}

/* Title Styling */
body.page-id-11291 h1 {
    color: #1a3a8a;
    text-align: center;
    padding: 20px 0;
    font-size: 3em;
    font-style: italic;
    animation: fadeInDown 1s ease-in-out;
}

/* Iframe (Calendar Form) Styling */
body.page-id-11291 iframe {
    display: block;
    margin: 30px auto;
    border: 2px solid #1a3a8a;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    padding: 10px;
    width: 80%;
    max-width: 800px;
    min-height: 500px;
    animation: fadeInDown 1.5s ease-in-out;
    background-color: #ffffff;
}

/* Contact Info Styling */
body.page-id-11291 .contact-info {
    text-align: center;
    margin-top: 40px;
    font-size: 1.2em;
    animation: fadeInUp 2s ease-in-out;
}

body.page-id-11291 .contact-info a {
    color: #1a3a8a;
    text-decoration: none;
    font-weight: bold;
}

body.page-id-11291 .contact-info a:hover {
    text-decoration: underline;
    color: #0f2957;
}

/* Form Disclaimer Styling */
body.page-id-11291 .form-disclaimer {
    text-align: center;
    font-size: 0.9em;
    color: #555;
    margin-top: 20px;
    animation: fadeInUp 2.5s ease-in-out;
}

/* Fade In Down Animation */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Container */
body.page-id-11291 .container {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}