* {
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    background-color: #000000;
    color: #f3f4f6;
    margin: 0;
    padding: 0;
    padding-top: 80px;
    font-size: 19px;
}

h1 {
    font-size: 3em;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 5px;
    text-shadow: 0 0 12px rgba(251, 191, 36, 0.6), 2px 2px 0px #000000;
}

h2 {
    font-size: 2.3em;
    color: #fbbf24;
    text-align: center;
    border-bottom: 3px solid #00f0ff;
    padding-bottom: 10px;
    margin-top: 10px;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
}

p {
    text-align: center;
    line-height: 1.6;
    margin: 15px 10px;
    color: #e2e8f0;
}

.subtitle {
    font-size: 1.25em;
    color: #00f0ff;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
}

.highlight-text {
    color: #fbbf24;
}

/* Persistent Navigation Menu */
.top-menu {
    background-color: #050b14;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 0;
    text-align: center;
    z-index: 1000;
    border-bottom: 3px solid #00f0ff;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.top-menu a {
    color: #f9fafb;
    text-decoration: none;
    margin: 0 8px;
    font-size: 0.95em;
    padding: 8px;
    transition: color 0.2s ease;
}

.top-menu a:hover {
    color: #fbbf24;
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.8);
    text-decoration: underline;
}

/* Layered Neon Card Containers */
.card-box {
    background: linear-gradient(135deg, #050b14 0%, #000000 100%);
    border: 3px solid #00f0ff;
    border-radius: 15px;
    max-width: 850px;
    margin: 30px auto;
    padding: 35px 25px;
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.3), inset 0 0 15px rgba(0, 240, 255, 0.1);
}

/* Warning Box Modifiers */
.warning-box {
    border-color: #ef4444;
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.3), inset 0 0 15px rgba(239, 68, 68, 0.1);
}

.warning-box h2 {
    border-bottom: 3px solid #ef4444;
    text-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
}

/* Community Box Modifiers (Neon Green) */
.community-box {
    border-color: #39ff14;
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.3), inset 0 0 15px rgba(57, 255, 20, 0.1);
}

.community-box h2 {
    color: #39ff14;
    border-bottom: 3px solid #39ff14;
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.5);
}

.policy-list {
    max-width: 750px;
    margin: 20px auto;
    text-align: left;
    color: #e2e8f0;
    font-size: 1.05em;
    line-height: 1.8;
}

.policy-list li {
    margin-bottom: 15px;
}

.policy-list strong {
    color: #fbbf24;
}

/* Service Sub-cards */
.service-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

.service-item {
    background-color: #0a1120;
    border: 2px solid #fbbf24;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 12px rgba(251, 191, 36, 0.2);
}

.service-item h3 {
    color: #fbbf24;
    text-align: center;
    margin-top: 0;
    font-size: 1.3em;
    text-shadow: 0 0 6px rgba(251, 191, 36, 0.4);
}

.service-item p {
    margin-bottom: 0;
    font-size: 0.95em;
    color: #f3f4f6;
}

/* E-Waste Policy Layout */
.ewaste-flex {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

@media(min-width: 600px) {
    .ewaste-flex {
        flex-direction: row;
    }
}

.ewaste-accepted {
    flex: 1;
    background-color: #0a1120;
    border: 2px solid #39ff14;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 12px rgba(57, 255, 20, 0.2);
}

.ewaste-accepted h3 {
    color: #39ff14;
    text-align: center;
    margin-top: 0;
    font-size: 1.2em;
}

.ewaste-rejected {
    flex: 1;
    background-color: #0a1120;
    border: 2px solid #ef4444;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.2);
}

.ewaste-rejected h3 {
    color: #ef4444;
    text-align: center;
    margin-top: 0;
    font-size: 1.2em;
}

.ewaste-list {
    margin: 15px 0 0 0;
    padding-left: 20px;
    color: #e2e8f0;
    font-size: 0.95em;
    line-height: 1.6;
}

.ewaste-list li {
    margin-bottom: 8px;
}

/* Lesson List Styling */
.lesson-list {
    max-width: 650px;
    margin: 20px auto;
    text-align: left;
    color: #e2e8f0;
    font-size: 1.05em;
    line-height: 1.8;
}

.lesson-list li {
    margin-bottom: 10px;
}

/* Gallery Section Styles */
.gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 25px;
}

.gallery-item {
    background-color: #0a1120;
    border: 2px solid #00f0ff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.2);
}

.gallery-item img {
    display: block;
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto 10px auto;
    border: 2px solid #fbbf24;
    border-radius: 8px;
}

.gallery-caption {
    font-size: 0.95em;
    color: #fbbf24;
    margin: 5px 0 0 0;
    text-align: center;
}

/* Button Group for Call & Text */
.button-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 90%;
    margin: 30px auto 10px auto;
}

@media(min-width: 600px) {
    .button-group {
        flex-direction: row;
        justify-content: center;
    }
}

.call-button {
    display: block;
    background-color: #fbbf24;
    color: #000000;
    font-size: 1.4em;
    text-align: center;
    text-decoration: none;
    padding: 18px 25px;
    border-radius: 12px;
    border: 3px solid #00f0ff;
    max-width: 100%;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
    flex: 1;
}

.call-button:hover {
    background-color: #f59e0b;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.8);
    color: #000000;
}

.text-button {
    display: block;
    background-color: #00f0ff;
    color: #000000;
    font-size: 1.4em;
    text-align: center;
    text-decoration: none;
    padding: 18px 25px;
    border-radius: 12px;
    border: 3px solid #fbbf24;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
    flex: 1;
}

.text-button:hover {
    background-color: #38bdf8;
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.8);
}

/* FAQ Item Cards */
.faq-item {
    background-color: #0a1120;
    border: 2px solid #00f0ff;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.faq-item h3 {
    color: #00f0ff;
    margin-top: 0;
    font-size: 1.2em;
    text-shadow: 0 0 5px rgba(0, 240, 255, 0.4);
}

.faq-item p {
    text-align: left;
    margin-bottom: 0;
    font-size: 0.95em;
}

/* Contact Form Styling */
.form-container {
    background-color: #ffffff;
    color: #000000;
    padding: 25px;
    margin: 25px auto;
    border: 3px solid #fbbf24;
    border-radius: 12px;
    max-width: 90%;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
}

.form-container h3 {
    text-align: center;
    color: #000000;
    margin-top: 0;
    font-size: 1.4em;
}

label {
    display: block;
    font-weight: 900;
    margin-top: 15px;
    margin-bottom: 5px;
    color: #000000;
    font-size: 0.95em;
}

input, textarea {
    width: 100%;
    padding: 12px;
    font-size: 1em;
    border: 2px solid #6b7280;
    border-radius: 8px;
    background-color: #f9fafb;
    color: #000000;
    font-family: 'Lato', sans-serif;
    font-weight: 900;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #00f0ff;
    background-color: #ffffff;
}

.submit-button {
    display: block;
    width: 100%;
    background-color: #00f0ff;
    color: #000000;
    font-size: 1.2em;
    padding: 14px;
    border: none;
    border-radius: 8px;
    margin-top: 25px;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.submit-button:hover {
    background-color: #38bdf8;
}

.social-title {
    color: #00f0ff;
    text-align: center;
    margin-top: 35px;
    font-size: 1.3em;
    text-shadow: 0 0 6px rgba(0, 240, 255, 0.4);
}

/* Image Sizing Controls */
.image-container img {
    display: block;
    width: 100%;
    max-width: 550px;
    height: auto;
    margin: 20px auto;
    border: 3px solid #fbbf24;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.3);
}

.qr-container img {
    display: block;
    width: 100%;
    max-width: 220px;
    height: auto;
    margin: 15px auto;
    border: 3px solid #00f0ff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

/* Bottom Footer Notice */
.footer-notice {
    background-color: #050b14;
    border-top: 4px solid #fbbf24;
    padding: 25px 20px;
    margin-top: 50px;
    text-align: center;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.3);
}

.footer-notice p {
    color: #f9fafb;
    margin: 0;
    font-size: 1em;
}

.footer-notice a {
    color: #00f0ff;
    font-weight: 900;
    text-decoration: underline;
}