/* =========
   Global Reset & Base Styles
   ========= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* =========
   Container & Layout
   ========= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========
   Header & Navigation
   ========= */
.header {
    background-color: #1a4d7a;
    border-bottom: 2px solid #0f3a5f;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 45px;
    background: linear-gradient(135deg, #ffffff, #e8f4f8);
    color: #1a4d7a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0 8px;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #e8f4f8;
    font-size: 0.95rem;
    font-weight: 400;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #ffd700;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

/* =========
   Hero Section
   ========= */
.hero {
    position: relative;
    background: linear-gradient(135deg, #1a4d7a 0%, #0f3a5f 100%);
    color: #ffffff;
    padding: 100px 0 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: #ffd700;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #e8f4f8;
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    color: #e8f4f8;
}

/* =========
   Buttons
   ========= */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #ffd700;
    color: #1a4d7a;
    border-color: #ffd700;
}

.btn-primary:hover {
    background-color: #ffed4e;
    border-color: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-outline:hover {
    background-color: #ffffff;
    color: #1a4d7a;
}

/* =========
   Sections
   ========= */
.section {
    padding: 80px 0;
}

.section-light {
    background-color: #f8f9fa;
}

.section-highlight {
    background: linear-gradient(135deg, #1a4d7a 0%, #0f3a5f 100%);
    color: #ffffff;
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a4d7a;
    margin-bottom: 15px;
}

.section-highlight .section-title {
    color: #ffffff;
}

.section-description {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.section-highlight .section-description {
    color: #e8f4f8;
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}

/* =========
   Page Header
   ========= */
.page-header {
    background: linear-gradient(135deg, #1a4d7a 0%, #0f3a5f 100%);
    color: #ffffff;
    padding: 80px 0 60px;
    text-align: center;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #e8f4f8;
    max-width: 700px;
    margin: 0 auto;
}

/* =========
   Cards & Grids
   ========= */
.mission-grid,
.services-grid,
.benefits-grid,
.news-grid,
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mission-card,
.service-card,
.benefit-card,
.news-card,
.resource-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover,
.service-card:hover,
.benefit-card:hover,
.news-card:hover,
.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.mission-icon,
.service-icon,
.benefit-icon,
.resource-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.mission-card h3,
.service-card h3,
.benefit-card h3,
.resource-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a4d7a;
    margin-bottom: 15px;
}

.mission-card p,
.service-card p,
.benefit-card p,
.resource-card p {
    color: #6c757d;
    line-height: 1.7;
}

.service-link {
    display: inline-block;
    margin-top: 15px;
    color: #1a4d7a;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #0f3a5f;
}

/* =========
   News & Events
   ========= */
.news-article {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-article:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.news-article.featured {
    border: 3px solid #ffd700;
}

.news-image-placeholder {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, #1a4d7a, #0f3a5f);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.news-content {
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #6c757d;
}

.news-category {
    background-color: #e8f4f8;
    color: #1a4d7a;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.news-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a4d7a;
    margin-bottom: 15px;
}

.news-excerpt {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* =========
   Events
   ========= */
.events-filter,
.news-categories {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn,
.category-btn {
    padding: 10px 20px;
    background-color: #ffffff;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    color: #6c757d;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.category-btn:hover,
.filter-btn.active,
.category-btn.active {
    background-color: #1a4d7a;
    border-color: #1a4d7a;
    color: #ffffff;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.event-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.event-date-large {
    text-align: center;
    background: linear-gradient(135deg, #1a4d7a, #0f3a5f);
    color: #ffffff;
    border-radius: 8px;
    padding: 15px;
}

.event-month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.event-day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.event-year {
    display: block;
    font-size: 0.85rem;
    margin-top: 5px;
}

.event-details {
    display: flex;
    flex-direction: column;
}

.event-badge {
    display: inline-block;
    padding: 5px 12px;
    background-color: #ffd700;
    color: #1a4d7a;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 10px;
    width: fit-content;
}

.event-badge.featured {
    background-color: #ff6b6b;
    color: #ffffff;
}

.event-badge.past {
    background-color: #6c757d;
    color: #ffffff;
}

.event-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a4d7a;
    margin-bottom: 10px;
}

.event-meta {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.event-description {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.event-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tag {
    padding: 5px 12px;
    background-color: #e8f4f8;
    color: #1a4d7a;
    border-radius: 20px;
    font-size: 0.85rem;
}

.event-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.events-preview {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.event-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 20px;
    align-items: start;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.event-date {
    text-align: center;
}

.event-content {
    flex: 1;
}

.event-link {
    color: #1a4d7a;
    font-weight: 500;
    align-self: center;
}

/* =========
   Membership & Pricing
   ========= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.pricing-card.pricing-featured {
    border: 3px solid #ffd700;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #ffd700;
    color: #1a4d7a;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e8f4f8;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a4d7a;
    margin-bottom: 15px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a4d7a;
}

.price-period {
    font-size: 1rem;
    color: #6c757d;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    color: #6c757d;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* =========
   Resources & Tabs
   ========= */
.resources-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    border-bottom: 2px solid #e8f4f8;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    color: #6c757d;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: -2px;
}

.tab-btn:hover,
.tab-btn.active {
    color: #1a4d7a;
    border-bottom-color: #1a4d7a;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.link-category {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.category-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a4d7a;
    margin-bottom: 15px;
}

.links-list {
    list-style: none;
}

.links-list li {
    margin-bottom: 10px;
}

.links-list a {
    color: #1a4d7a;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.links-list a:hover {
    color: #0f3a5f;
}

/* =========
   Contact
   ========= */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-form-section,
.contact-info-section {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: #1a4d7a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a4d7a;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a4d7a;
    margin-bottom: 8px;
}

.contact-details p {
    color: #6c757d;
    line-height: 1.7;
}

.contact-details a {
    color: #1a4d7a;
    text-decoration: underline;
}

.contact-departments {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e8f4f8;
}

.department-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a4d7a;
    margin-bottom: 15px;
}

.department-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.department-item strong {
    display: block;
    color: #1a4d7a;
    margin-bottom: 5px;
}

.department-item a {
    color: #1a4d7a;
    text-decoration: underline;
}

.social-media-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e8f4f8;
}

.social-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a4d7a;
    margin-bottom: 15px;
}

.social-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-btn {
    padding: 10px 20px;
    background-color: #1a4d7a;
    color: #ffffff;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.social-btn:hover {
    background-color: #0f3a5f;
}

.map-placeholder {
    background: linear-gradient(135deg, #e8f4f8, #d0e8f0);
    border-radius: 12px;
    padding: 60px;
    text-align: center;
    margin-top: 30px;
}

.map-content p {
    color: #6c757d;
    margin-bottom: 10px;
}

/* =========
   About Page
   ========= */
.content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    margin-top: 40px;
}

.content-main h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1a4d7a;
    margin-bottom: 20px;
    margin-top: 40px;
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.impact-item {
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a4d7a;
    margin-bottom: 8px;
}

.impact-label {
    color: #6c757d;
    font-size: 0.95rem;
}

.sidebar-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.sidebar-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a4d7a;
    margin-bottom: 15px;
}

.facts-list {
    list-style: none;
}

.facts-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e8f4f8;
    color: #6c757d;
}

.facts-list li:last-child {
    border-bottom: none;
}

.facts-list strong {
    color: #1a4d7a;
}

.team-grid,
.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card,
.board-member {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover,
.board-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.team-avatar,
.board-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1a4d7a, #0f3a5f);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.team-name,
.board-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a4d7a;
    margin-bottom: 8px;
}

.team-role,
.board-role {
    font-size: 1rem;
    color: #ffd700;
    font-weight: 500;
    margin-bottom: 8px;
}

.team-bio {
    color: #6c757d;
    line-height: 1.7;
    font-size: 0.95rem;
}

.board-org {
    color: #6c757d;
    font-size: 0.9rem;
}

/* =========
   Membership Page
   ========= */
.membership-intro {
    text-align: center;
    margin-bottom: 50px;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
    margin: 30px 0;
}

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 30px;
    padding-left: 60px;
    position: relative;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1a4d7a, #0f3a5f);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.steps-list strong {
    display: block;
    font-size: 1.2rem;
    color: #1a4d7a;
    margin-bottom: 8px;
}

.steps-list p {
    color: #6c757d;
    line-height: 1.7;
}

.login-box {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin-top: 30px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.forgot-link {
    color: #1a4d7a;
    font-size: 0.95rem;
    text-decoration: underline;
}

.testimonial {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e8f4f8;
}

.testimonial:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.testimonial-text {
    color: #6c757d;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-author {
    color: #1a4d7a;
    font-weight: 500;
    font-size: 0.95rem;
}

/* =========
   Highlight Section
   ========= */
.highlight-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.highlight-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.highlight-text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #e8f4f8;
}

.highlight-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========
   Newsletter
   ========= */
.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group-inline {
    display: flex;
    gap: 10px;
}

.form-group-inline input {
    flex: 1;
    padding: 12px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 1rem;
}

.form-note {
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* =========
   Pagination
   ========= */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.pagination-btn {
    padding: 10px 20px;
    background-color: #ffffff;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    background-color: #1a4d7a;
    border-color: #1a4d7a;
    color: #ffffff;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-info {
    color: #6c757d;
}

/* =========
   FAQ
   ========= */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a4d7a;
    margin-bottom: 10px;
}

.faq-answer {
    color: #6c757d;
    line-height: 1.7;
}

.faq-answer a {
    color: #1a4d7a;
    text-decoration: underline;
}

/* =========
   Footer
   ========= */
.footer {
    background-color: #1a4d7a;
    color: #e8f4f8;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-description {
    color: #e8f4f8;
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links a {
    color: #e8f4f8;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffd700;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #e8f4f8;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #e8f4f8;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #e8f4f8;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #ffd700;
    text-decoration: underline;
}

/* =========
   Responsive Design
   ========= */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .contact-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .news-article {
        grid-template-columns: 1fr;
    }

    .news-image-placeholder {
        height: 200px;
    }

    .event-card {
        grid-template-columns: 1fr;
    }

    .event-date-large {
        max-width: 120px;
    }

    .pricing-card.pricing-featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 50px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .section {
        padding: 60px 0;
    }

    .mission-grid,
    .services-grid,
    .benefits-grid,
    .news-grid,
    .resources-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group-inline {
        flex-direction: column;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
        height: 65px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .mission-card,
    .service-card,
    .benefit-card,
    .news-card,
    .resource-card,
    .pricing-card {
        padding: 25px;
    }
}

