/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Blue Light police-inspired color palette with adventure energy */
    --primary-color: #0052cc;
    --primary-dark: #003d99;
    --primary-light: #1a66dd;
    --secondary-color: #ff6b35;
    --accent-color: #00b894;
    --text-dark: #1a1a2e;
    --text-medium: #4a4a5e;
    --text-light: #6b6b7a;
    --bg-light: #f7f9fc;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --success-color: #00b894;
    --warning-color: #ff9f1a;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
    border-bottom: 3px solid var(--primary-color);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--primary-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.88) 0%, rgba(0, 61, 153, 0.82) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 850px;
    padding: 80px 0;
}

.hero-title {
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.15;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 19px;
    margin-bottom: 40px;
    opacity: 0.96;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #e65a2b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.18);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-2px);
}

.btn-light {
    background-color: white;
    color: var(--primary-color);
}

.btn-light:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Mission Section */
.mission {
    background-color: var(--bg-light);
}

.mission-content {
    max-width: 850px;
    margin: 0 auto;
}

.mission-text {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-medium);
    text-align: center;
}

/* Who We Help */
.who-we-help {
    background-color: var(--bg-white);
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.help-card {
    background: var(--bg-light);
    padding: 36px 28px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.help-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.help-icon {
    font-size: 44px;
    margin-bottom: 18px;
}

.help-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.help-card p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 15px;
}

/* What We Do */
.what-we-do {
    background-color: var(--bg-light);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.activity-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.activity-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.08);
}

.activity-content {
    padding: 32px;
}

.activity-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.activity-content p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.link-arrow:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

/* Impact Section */
.impact {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 48px;
    text-align: center;
}

.impact-stat {
    animation: fadeInUp 0.8s ease;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    opacity: 0.94;
}

/* Partnership Section */
.partnership {
    background-color: var(--bg-white);
}

.partnership-content {
    max-width: 900px;
    margin: 0 auto;
}

.partnership-text h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 24px;
    text-align: center;
}

.partnership-text p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 18px;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.96;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
    border-bottom: 4px solid var(--secondary-color);
}

.page-header h1 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.96;
}

/* Content Sections */
.about-content {
    max-width: 950px;
    margin: 0 auto;
    padding: 40px 0;
}

.content-section {
    margin-bottom: 64px;
}

.content-section h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.content-section p {
    font-size: 17px;
    line-height: 1.85;
    color: var(--text-medium);
    margin-bottom: 18px;
}

.content-section ul {
    margin-left: 28px;
    margin-bottom: 20px;
}

.content-section li {
    color: var(--text-medium);
    line-height: 1.85;
    margin-bottom: 10px;
    font-size: 16px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 36px;
}

.value-card {
    background: var(--bg-light);
    padding: 34px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary-color);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.value-card p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Programs */
.programs-intro {
    background-color: var(--bg-light);
    padding: 40px 0;
}

.intro-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.85;
}

.programs-detail {
    background-color: var(--bg-white);
}

.program-detail {
    margin-bottom: 80px;
}

.program-detail:last-child {
    margin-bottom: 0;
}

.program-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    background: var(--bg-light);
    padding: 50px;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
}

.program-detail-grid.reverse {
    direction: rtl;
}

.program-detail-grid.reverse > * {
    direction: ltr;
}

.program-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.program-detail-content h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.program-intro {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
    font-weight: 500;
}

.program-detail-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 32px;
    margin-bottom: 16px;
}

.program-detail-content p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

.program-list {
    margin-left: 24px;
    margin-bottom: 28px;
}

.program-list li {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 10px;
}

/* Safety Section */
.safety-section {
    background-color: var(--bg-light);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.safety-card {
    background: white;
    padding: 34px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.safety-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.safety-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.safety-card p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Participate Section */
.participate {
    background-color: var(--bg-white);
}

.participate-content h2 {
    font-size: 34px;
    font-weight: 800;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 48px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.step {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-light);
    border-radius: 12px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

.participate-note {
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.08) 0%, rgba(0, 184, 148, 0.08) 100%);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.participate-note p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

/* Get Involved */
.ways-to-help {
    background-color: var(--bg-light);
}

.help-list {
    margin: 16px 0 24px 24px;
    list-style: disc;
}

.help-list li {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 8px;
    font-size: 15px;
}

.tax-note {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
    font-style: italic;
    margin-top: 12px;
}

.impact-support {
    background-color: var(--bg-white);
}

.impact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.impact-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-top: 4px solid var(--secondary-color);
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.impact-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.impact-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.volunteer-detail {
    background-color: var(--bg-light);
}

.volunteer-content h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 32px;
    text-align: center;
}

.volunteer-section {
    background: white;
    padding: 32px;
    margin-bottom: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.volunteer-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.volunteer-section p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 12px;
}

.volunteer-note {
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.08) 0%, rgba(255, 107, 53, 0.08) 100%);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    margin-top: 32px;
}

.volunteer-note h3 {
    color: var(--primary-color);
}

.corporate-section {
    background-color: var(--bg-white);
}

.corporate-section h2 {
    font-size: 34px;
    font-weight: 800;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 48px;
}

.corporate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.corporate-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.corporate-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.corporate-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.corporate-card p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

.testimonials {
    background-color: var(--bg-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: white;
    padding: 36px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
}

.contact-info h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.contact-info > p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 16px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-item p,
.contact-item a {
    color: var(--text-medium);
    line-height: 1.7;
    text-decoration: none;
    font-size: 16px;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-note {
    font-size: 14px !important;
    color: var(--text-light) !important;
    font-style: italic;
    margin-top: 6px;
}

.bluelight-info {
    background: var(--bg-light);
    padding: 28px;
    border-radius: 12px;
    margin-top: 40px;
    border-left: 4px solid var(--primary-color);
}

.bluelight-info h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

.bluelight-info p {
    font-size: 15px;
    line-height: 1.7;
}

/* Contact Form */
.contact-form-wrapper h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.form-intro {
    color: var(--text-medium);
    margin-bottom: 32px;
    font-size: 15px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 13px 16px;
    font-size: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: -8px;
}

.privacy-note {
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
    margin-top: -8px;
}

.form-success {
    background-color: var(--success-color);
    color: white;
    padding: 22px;
    border-radius: 8px;
    text-align: center;
    margin-top: 18px;
    font-weight: 600;
}

/* Location Section */
.location-section {
    background-color: var(--bg-light);
}

.location-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.location-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 14px;
    margin-top: 24px;
}

.location-text h3:first-of-type {
    margin-top: 0;
}

.location-text p,
.location-text ul {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 18px;
}

.location-text ul {
    margin-left: 24px;
}

.location-text li {
    margin-bottom: 8px;
}

.map-note {
    background: white;
    padding: 28px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.faq-item {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.faq-item h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.faq-item p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Emergency Info */
.emergency-info {
    background: linear-gradient(135deg, var(--warning-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.emergency-content h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 18px;
}

.emergency-content p {
    font-size: 17px;
    margin-bottom: 12px;
    opacity: 0.96;
}

.emergency-content a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.emergency-note {
    font-size: 15px;
    font-weight: 600;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    font-size: 15px;
}

.partnership-badge {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 14px !important;
    color: var(--warning-color) !important;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-col ul a:hover {
    color: white;
}

.contact-list li {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 10px;
    font-size: 15px;
}

.charity-status {
    margin-top: 12px;
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 66px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 66px);
        background-color: white;
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        align-items: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .program-detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px;
    }

    .program-detail-grid.reverse {
        direction: ltr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    section {
        padding: 60px 0;
    }

    .page-header {
        padding: 60px 0;
    }

    .page-header h1 {
        font-size: 38px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }
}
