body { 
    font-family: Arial, sans-serif; 
    max-width: 800px; 
    margin: 0 auto; 
    padding: 20px; 
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('background.jpg') center/cover no-repeat fixed;
    color: #fff; 
    line-height: 1.6; 
    min-height: 100vh;
}

h1 { 
    font-size: 3em; 
    text-align: center; 
    color: #fff; 
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin-bottom: 0; 
}

h2 { 
    font-size: 3em;
    text-align: center; 
    color: #fff; 
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin: 0 0 10px 0; 
    font-weight: bold;
}

h3 { 
    font-size: 1.8em; 
    text-align: center; 
    color: #fff; 
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin: 0 0 10px 0; 
    font-weight: normal;
}

.logo { 
    max-width: 400px;
    height: auto; 
    display: block; 
    margin: 0 auto 20px; 
}

header nav { 
    text-align: center; 
    padding: 15px 0; 
    margin-bottom: 20px; 
    background: rgba(44,90,160,0.9); 
    border-radius: 5px;
}

header nav a { 
    color: white; 
    text-decoration: none; 
    margin: 0 15px; 
    font-weight: bold; 
    font-size: 1.1em;
}

header nav a:hover { 
    text-decoration: underline; 
}

.description { 
    text-align: center; 
    color: #fff; 
    font-size: 2em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    padding: 40px; 
    margin-bottom: 30px; 
    background: none;
}

.disclaimer {
    font-size: 1em;
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    margin: 0 0 30px 0;
    font-style: italic;
}

.meetings { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
}

.meeting { 
    background: white; 
    color: #333;
    padding: 20px; 
    border-radius: 10px; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.3); 
    text-align: center; 
    margin-bottom: 20px;
}

.meeting h3 { 
    color: #000 !important;
    margin-bottom: 15px;
}

.meeting iframe { 
    width: 100%; 
    height: 250px; 
    border: 0; 
    border-radius: 5px; 
}

.directions-link {
    display: inline-block;
    background: #4da6ff;
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    margin: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.directions-link:hover {
    background: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.resources {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.resource-item {
    background: white; 
    color: #333;
    padding: 20px; 
    border-radius: 10px; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.3); 
    text-align: center;
    margin: 10px 0;
}

.resource-item a { 
    color: #4da6ff; 
    text-decoration: none; 
    font-weight: bold; 
    font-size: 1.3em;
    display: block;
    margin-bottom: 5px;
}

.resource-item a:hover { 
    text-decoration: underline; 
}

.resource-item small { 
    color: #666;
    font-size: 0.9em;
}

.contact { 
    background: rgba(255,255,255,0.95); 
    color: #333;
    padding: 40px; 
    border-radius: 10px; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.3); 
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact h3 { 
    color: #2c5aa0; 
    margin-bottom: 20px; 
}

.contact p { 
    font-size
