* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   /* line-height: 1.2; */
    color: #333;
}

header {
    
    color: white;
    text-align: center;
    padding: 0; 
    margin: 0;
}
.header img, img[alt="logo"] { width: 100%; height: auto; display: block; }
.header-content {
    display: flex;
    align-items: center;
    justify-content: center;

}

.logo {
    width: 120px;
    
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: #667eea;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.header-text {
    text-align: left;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

section {
    padding: 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #0B769F;
}

section p {
    font-size: 1.1rem;
    /* line-height: 1.8; */
    color: #555;
    margin-bottom: 1rem;
}

section:nth-of-type(even) {
    background-color: #f8f9fa;
}

section-three p div{
    line-height: 0.5rem;
}


.signup-button {
    display: inline-block;
    background: linear-gradient(135deg, #0B769F 0%, #06926f 100%);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 243, 206, 0.4);
    margin-top: 1rem;
}

.signup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 175, 127, 0.6);
}

.signup-button:active {
    transform: translateY(0);
}

.s2-content {
    display: block;
    overflow: auto;
    
}

.s2-image {
    float: left;
    width: 350px;
    height: auto;
    margin-right: 25px;
    margin-bottom: 0px;
}

.s2-text {
    flex: 1;
    margin: 0;
}

.day {
    text-align: left !important;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 .2rem 0;
    color: #1a1a1a;
    }

.event {
    display: flex;
    align-items: baseline;
    padding: 0.25rem 0;
    width:fit-content;;
    }

.time {
    width: 110px;
    font-weight: 600;
    color: #c62828;
    flex-shrink: 0;
    }

.desc {
    flex: 1;
    }

@media (max-width: 768px) {
    .header-content {
        gap: 1rem;
    }

    .logo {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    header h1 {
        font-size: 2rem;
    }

    header p {
        font-size: 1rem;
    }

    section {
        padding: 3rem 1.5rem;
    }

    section h2 {
        font-size: 1.5rem;
    }

    section p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 2rem 1rem;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .header-text {
        text-align: center;
    }

    .logo {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    header h1 {
        font-size: 1.5rem;
    }

    section {
        padding: 2rem 1rem;
    }
}

.page-header {
    background-color: var(--navy-blue);
    width: 100%;
    padding: 4rem 1rem 6rem 1rem;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.official-seal {
    background: white;
    padding: 5px; margin-bottom: 1.5rem;
    border: 4px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}




.form-container { max-width: 550px; margin: 30px auto 60px auto; padding: 0 15px; }
.form-card {
    background: white; padding: 40px; border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.form-control-lg {
    text-align: center !important;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

.form-control-lg::placeholder {
    text-align: center !important;
}

.form-control-lg:-ms-input-placeholder {
    text-align: center !important;
}

.form-label {
    display: block;
    text-align: center;
    width: 100%;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
}

.btn-submit {
    background-color: var(--navy-blue); color: white;
    padding: 16px; font-weight: 700; border-radius: 10px; border: none;
    transition: transform 0.2s; width: 100%;
}
.btn-submit:hover { transform: translateY(-2px); background-color: #003366; color: white; }

.g-recaptcha { display: flex; justify-content: center; margin: 25px 0; }

.form-label {
    display: block;
    text-align: center;
    width: 100%;
}

.form-control-lg {
    text-align: center !important; 
}

.form-control-lg::placeholder {
    text-align: center !important; 
}


.btn-group {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.btn-outline-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1; 
}