/* Core Baseline Styling Rules */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Container Layout (No Nav Links) */
.site-header {
    border-bottom: 1px solid #e0e0e0;
    background-color: #ffffff;
    height: 95px;
    position: relative;
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 20px;
    height: 100%;
}
.logo-box {
    position: absolute;
    top: 0;
    left: 20px;
    background: #222222;
    padding: 10px; 
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    max-width: 240px;
}
.site-logo {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Multi-Column Main Layout Grid */
.page-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    display: flex;
    gap: 5%;
    padding: 0 20px;
}
.main-content { width: 65%; }
.sidebar { width: 30%; }

/* Core Typography */
h1 { font-size: 28px; margin-bottom: 20px; color: #222; line-height: 1.2; }
.lead-text { font-size: 16px; margin-bottom: 25px; }
h3 { color: #00a2b1; font-size: 20px; margin-bottom: 15px; }

/* Image Wrapper Properties */
.image-wrapper {
    float: right;
    width: 45%;
    margin-left: 20px;
    margin-bottom: 15px;
    text-align: center;
}
.image-wrapper img { width: 100%; height: auto; display: block; }
.caption { font-size: 11px; font-weight: bold; margin-top: 5px; line-height: 1.3; }

/* Guidelines Presentation Blocks */
.guidelines-container {
    margin-top: 35px;
    border-top: 1px dashed #dddddd;
    padding-top: 25px;
}
.guidelines-container h4 { font-size: 16px; color: #333333; margin-bottom: 10px; }
.guidelines-intro {
    font-size: 14px;
    color: #666666;
    margin-bottom: 20px;
    background-color: #f9f9f9;
    padding: 15px;
    border-left: 3px solid #00a2b1;
}
.guidelines-list { margin-left: 25px; }
.guidelines-list li { font-size: 14.5px; line-height: 1.6; margin-bottom: 12px; color: #444444; }

/* Target isolated styling for bold numbers */
.guidelines-list li::marker {
    font-weight: bold;
    color: #222222;
}

.see-also { font-size: 15px; margin-top: 25px; color: #333; }
.see-also a { color: #00a2b1; text-decoration: none; }
.see-also a:hover { text-decoration: underline; }

/* Centered Social Vector Icon Row Styling */
.social-row { display: flex; gap: 10px; margin-bottom: 20px; justify-content: center; }
.social-circle { 
    width: 32px; height: 32px; background: #00a2b1; color: white; border-radius: 50%; 
    display: inline-flex; align-items: center; justify-content: center; text-decoration: none;
    transition: transform 0.2s ease;
}
.social-circle:hover { transform: scale(1.08); }
.social-circle i { font-size: 14px; color: #ffffff; }

/* Contact Inquiry Form Card Styling */
.contact-card { border: 2px solid #00a2b1; border-radius: 6px; padding: 20px; background: #ffffff; }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-size: 14px; margin-bottom: 5px; font-weight: bold; }
.required { color: red; }
.form-group input, .form-group select, .form-group textarea { 
    width: 100%; padding: 8px; border: 1px solid #ccc; border-radius: 4px; font-family: inherit; font-size: 14px;
}
.form-disclaimer { font-size: 13px; line-height: 1.5; color: #333333; margin: 20px 0; }
.form-disclaimer p { margin-bottom: 12px; }

/* Mock Captcha Components CSS */
.captcha-container { margin-bottom: 20px; }
.mock-captcha {
    display: inline-flex; align-items: center; background: #f9f9f9; border: 1px solid #d3d3d3;
    border-radius: 3px; padding: 10px 15px; width: 100%; max-width: 300px; justify-content: space-between;
}
.mock-captcha input[type="checkbox"] { width: 24px; height: 24px; cursor: pointer; margin-right: 10px; }
.mock-captcha label { font-size: 14px; color: #000; flex-grow: 1; margin-bottom: 0; }
.captcha-logo { text-align: center; color: #555; font-size: 10px; }

.submit-btn {
    width: 100%; background: #00a2b1; color: white; border: none; padding: 12px;
    font-size: 16px; font-weight: bold; border-radius: 4px; cursor: pointer;
}

/* Form Success Hash States Layout Rules */
.confirmation-box {
    display: none; padding: 30px 15px; text-align: center; background-color: #f4fbfc;
    border: 1px dashed #00a2b1; border-radius: 4px;
}
.confirmation-box h4 { color: #00a2b1; font-size: 20px; margin-bottom: 12px; }
.confirmation-box p { font-size: 14px; line-height: 1.6; color: #333333; margin-bottom: 15px; }
.reset-form-btn {
    display: inline-block; padding: 8px 15px; background: #00a2b1; color: white;
    text-decoration: none; border-radius: 4px; font-size: 13px; font-weight: bold;
}
#contact:target .form-view { display: none; }
#contact:target .confirmation-box { display: block; }

/* Recent Profile Widget Elements */
.event-profiles-widget { margin-top: 35px; padding-left: 5px; }
.event-profiles-widget h3 { font-size: 18px; color: #222222; margin-bottom: 20px; font-weight: bold; }
.profile-item { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.profile-item img { width: 50px; height: 50px; object-fit: cover; border-radius: 4px; border: 1px solid #e0e0e0; }
.profile-item p { font-size: 14px; line-height: 1.3; }
.profile-item a { color: #222222; text-decoration: none; }
.profile-item a:hover { color: #00a2b1; }

/* Corporate Dark Footer Layout */
.site-footer { background-color: #222222; color: #aaaaaa; padding: 45px 0 25px 0; margin-top: 60px; font-size: 13.5px; }
.footer-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; padding: 0 20px; gap: 30px; }
.footer-col { flex: 1; }
.site-footer h4 { color: #ffffff; font-size: 15px; margin-bottom: 15px; font-weight: normal; }
.site-footer .sub-heading-footer { margin-top: 25px; margin-bottom: 10px; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul li a { color: #00a2b1; text-decoration: none; }
.site-footer ul li a:hover { text-decoration: underline; }
.footer-col .contact-info .teal-link { color: #00a2b1; }
.footer-col .contact-info .grey-text { color: #aaaaaa; line-height: 1.5; }
.footer-socials { display: flex; gap: 8px; }
.footer-socials .social-circle { width: 28px; height: 28px; }
.footer-socials .social-circle i { font-size: 12px; }
.footer-bottom {
    max-width: 1200px; margin: 40px auto 0 auto; padding: 20px 20px 0 20px;
    border-top: 1px solid #333333; display: flex; justify-content: space-between; color: #777777; font-size: 12px;
}
.footer-bottom a { color: #00a2b1; text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }

/* ==========================================================================
   CSS MEDIA QUERIES: Enforces 100% Fluid Mobile Responsiveness 
   ========================================================================== */
@media screen and (max-width: 900px) {
    .page-wrapper {
        flex-direction: column;
        margin: 20px auto;
    }
    .main-content, .sidebar {
        width: 100%;
    }
    .sidebar {
        margin-top: 40px;
    }
    .site-header {
        height: 75px;
    }
    .logo-box {
        max-width: 160px;
        padding: 6px;
    }
    .image-wrapper {
        float: none;
        width: 100%;
        margin-left: 0;
        margin-bottom: 20px;
    }
    /* Corporate Dark Footer Layout */
    .site-footer { 
        background-color: #222222; 
        color: #aaaaaa; 
        padding: 45px 0 25px 0; 
        margin-top: 60px; 
        font-size: 13.5px; 
    }
    .footer-container { 
        max-width: 1200px; 
        margin: 0 auto; 
        display: flex; 
        justify-content: space-between; 
        padding: 0 20px; 
        gap: 40px; 
    }
    .footer-col { 
        flex: 1; 
    }
    /* Explicitly center-align the social column content */
    .footer-col.social-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .site-footer h4 { 
        color: #ffffff; 
        font-size: 15px; 
        margin-bottom: 15px; 
        font-weight: normal; 
        line-height: 1.2;
    }
    .site-footer ul { 
        list-style: none; 
    }
    .site-footer ul li { 
        margin-bottom: 10px; 
    }
    .site-footer ul li a { 
        color: #00a2b1; 
        text-decoration: none; 
    }
    .site-footer ul li a:hover { 
        text-decoration: underline; 
    }
    .footer-col .contact-info .teal-link { 
        color: #00a2b1; 
    }
    .footer-col .contact-info .grey-text { 
        color: #aaaaaa; 
        line-height: 1.5; 
    }

    /* Footer Icon Positioning Grid */
    .footer-socials { 
        display: flex; 
        gap: 12px; 
        justify-content: center;
        margin-top: 5px;
    }
    .footer-socials .social-circle { 
        width: 32px; 
        height: 32px; 
        background: #00a2b1;
        color: white;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: transform 0.2s ease;
    }
    .footer-socials .social-circle:hover {
        transform: scale(1.08);
    }
    .footer-socials .social-circle i { 
        font-size: 14px; 
        color: #ffffff;
    }

    .footer-bottom {
        max-width: 1200px; 
        margin: 40px auto 0 auto; 
        padding: 20px 20px 0 20px;
        border-top: 1px solid #333333; 
        display: flex; 
        justify-content: space-between; 
        color: #777777; 
        font-size: 12px;
    }
    .footer-bottom a { 
        color: #00a2b1; 
        text-decoration: none; 
    }
    .footer-bottom a:hover { 
        text-decoration: underline; 
    }

    /* Mobile Media Query Fallback */
    @media screen and (max-width: 900px) {
        .footer-container {
            flex-direction: column;
            gap: 35px;
            text-align: center;
        }
        .footer-col.social-col {
            align-items: center;
        }
        .footer-bottom {
            flex-direction: column;
            gap: 10px;
            text-align: center;
        }
    }
}