﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

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

/* Header Styles */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background: #1e40af;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item i {
    width: 16px;
    height: 16px;
}

.ministry-info {
    font-size: 12px;
    opacity: 0.9;
}

.main-header {
    padding: 16px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo i {
    width: 40px;
    height: 40px;
    color: #2563eb;
}

.logo-text h1 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.logo-text p {
    font-size: 14px;
    color: #6b7280;
}

.nav-desktop {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: #dbeafe;
    color: #1d4ed8;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn i {
    width: 24px;
    height: 24px;
    color: #374151;
}

.mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid #e5e7eb;
}

.mobile-menu-content {
    padding: 16px 0;
}

.mobile-nav-link {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: background 0.3s ease;
}

.mobile-nav-link:hover {
    background: #f3f4f6;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1e40af 0%, #059669 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

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

.page-header-content p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e40af 0%, #059669 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.btn {
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: #fbbf24;
    color: #1f2937;
}

.btn-primary:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: white;
    color: #1e40af;
}

.search-box {
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    max-width: 400px;
}

.search-box input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    outline: none;
    font-size: 16px;
}

.search-box button {
    background: #2563eb;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    color: white;
}

.search-box button i {
    width: 20px;
    height: 20px;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.section-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.section-icon i {
    width: 32px;
    height: 32px;
    color: #2563eb;
}

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

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon i {
    width: 32px;
    height: 32px;
    color: #2563eb;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Services Access Section */
.services-access {
    padding: 80px 0;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.service-item {
    background: white;
    padding: 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-item i {
    width: 24px;
    height: 24px;
    color: #059669;
    flex-shrink: 0;
}

.service-item span {
    font-weight: 500;
    color: #1f2937;
}

/* Minister Section */
.minister-section {
    padding: 80px 0;
    background: white;
}

.minister-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.minister-image {
    background: linear-gradient(135deg, #dbeafe, #dcfce7);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.minister-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
}

.minister-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.minister-info p {
    color: #6b7280;
    margin-bottom: 16px;
}

.minister-info blockquote {
    background: #dbeafe;
    padding: 16px;
    border-radius: 8px;
    font-style: italic;
    color: #1e40af;
    font-weight: 500;
}

.ministry-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #2563eb;
}

.value-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.value-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Partnership Section */
.partnership-section {
    padding: 80px 0;
    background: #f8fafc;
}

.partnership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.partner-image {
    background: linear-gradient(135deg, #dcfce7, #fef3c7);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.partner-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
}

.partner-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.partner-info p {
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.6;
}

.partner-info blockquote {
    background: #dcfce7;
    padding: 16px;
    border-radius: 8px;
    font-style: italic;
    color: #059669;
    font-weight: 500;
}

.partnership-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 16px;
    align-items: start;
}

.benefit-card i {
    width: 24px;
    height: 24px;
    color: #059669;
    flex-shrink: 0;
    margin-top: 4px;
}

.benefit-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Commitment Section */
.commitment-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e40af, #059669);
    color: white;
    text-align: center;
}

.commitment-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.commitment-content p {
    font-size: 18px;
    margin-bottom: 48px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

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

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Vision Mission Page Styles */
.vision-section {
    padding: 80px 0;
    background: #f8fafc;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.vision-text {
    background: linear-gradient(135deg, #dbeafe, #dcfce7);
    border-radius: 16px;
    padding: 32px;
}

.vision-text p {
    font-size: 20px;
    line-height: 1.7;
    color: #1f2937;
}

.vision-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.mission-section {
    padding: 80px 0;
    background: white;
}

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

.mission-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #2563eb;
    position: relative;
}

.mission-number {
    position: absolute;
    top: -16px;
    left: 24px;
    background: #2563eb;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.mission-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
    margin-top: 8px;
}

.mission-card p {
    color: #6b7280;
    line-height: 1.6;
}

.values-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.value-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.value-icon {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.value-icon i {
    width: 32px;
    height: 32px;
    color: #2563eb;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.value-card p {
    color: #6b7280;
    line-height: 1.6;
}

.goals-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e40af, #059669);
    color: white;
    text-align: center;
}

.goals-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.goals-content p {
    font-size: 18px;
    margin-bottom: 48px;
    opacity: 0.95;
}

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

.goal-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.goal-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
}

.goal-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Services Page Styles */
.main-services {
    padding: 80px 0;
    background: white;
}

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

.service-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #2563eb;
    text-align: center;
}

.service-icon {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.service-icon i {
    width: 32px;
    height: 32px;
    color: #2563eb;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.service-features li {
    color: #6b7280;
    margin-bottom: 8px;
    font-size: 14px;
}

.startup-services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f3e8ff, #fce7f3);
}

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

.pricing-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid #8b5cf6;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #8b5cf6;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-icon {
    background: linear-gradient(135deg, #ddd6fe, #fce7f3);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.pricing-icon i {
    width: 32px;
    height: 32px;
    color: #8b5cf6;
}

.pricing-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.price {
    font-size: 32px;
    font-weight: 800;
    color: #8b5cf6;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.pricing-features li {
    color: #6b7280;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

.pricing-features li::before {
    content: "âœ“";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.additional-services {
    padding: 80px 0;
    background: #f8fafc;
}

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

.additional-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.additional-icon {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.additional-icon i {
    width: 32px;
    height: 32px;
    color: #2563eb;
}

.additional-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.additional-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 16px;
}

.additional-features {
    list-style: none;
}

.additional-features li {
    color: #6b7280;
    margin-bottom: 8px;
    font-size: 14px;
}

.security-support {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937, #111827);
    color: white;
}

.security-content {
    text-align: center;
}

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

.security-item {
    text-align: center;
}

.security-icon {
    background: rgba(255, 255, 255, 0.1);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.security-icon i {
    width: 32px;
    height: 32px;
    color: #60a5fa;
}

.security-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.security-item p {
    color: #d1d5db;
    line-height: 1.6;
}

/* Background Page Styles */
.timeline-section {
    padding: 80px 0;
    background: white;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #e5e7eb;
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-icon {
    background: #2563eb;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-icon i {
    width: 24px;
    height: 24px;
    color: white;
}

.timeline-content {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 45%;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.timeline-content p {
    color: #6b7280;
    line-height: 1.6;
}

.challenge-solution {
    padding: 80px 0;
    background: #f8fafc;
}

.challenge-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.challenge-section {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border-radius: 16px;
    padding: 32px;
}

.solution-section {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-radius: 16px;
    padding: 32px;
}

.challenge-section h2,
.solution-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

.challenge-list,
.solution-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.challenge-item,
.solution-item {
    background: white;
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid #ef4444;
}

.solution-item {
    border-left-color: #10b981;
}

.challenge-item h3,
.solution-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.challenge-item p,
.solution-item p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

.statistics-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e40af, #059669);
    color: white;
    text-align: center;
}

.statistics-content {
    text-align: center;
}

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

.legal-section {
    padding: 80px 0;
    background: white;
}

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

.legal-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-icon {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.legal-icon i {
    width: 32px;
    height: 32px;
    color: #2563eb;
}

.legal-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.legal-card ul {
    list-style: none;
}

.legal-card li {
    color: #6b7280;
    margin-bottom: 8px;
    font-size: 14px;
}

.future-vision {
    padding: 80px 0;
    background: linear-gradient(135deg, #f3e8ff, #fce7f3);
}

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

.future-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.future-icon {
    background: linear-gradient(135deg, #ddd6fe, #fce7f3);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.future-icon i {
    width: 32px;
    height: 32px;
    color: #8b5cf6;
}

.future-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.future-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* News Page Styles */
.news-filter {
    padding: 40px 0;
    background: white;
}

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

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.featured-news {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e40af, #059669);
    color: white;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.featured-badge {
    background: #fbbf24;
    color: #1f2937;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
}

.featured-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.featured-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
    opacity: 0.95;
}

.news-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d1d5db;
}

.meta-item i {
    width: 16px;
    height: 16px;
}

.featured-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.news-grid-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 24px;
}

.news-category {
    background: #dbeafe;
    color: #1d4ed8;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
}

.news-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 16px;
}

.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc, #dbeafe);
}

.newsletter-content {
    text-align: center;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 16px;
}

.form-group input {
    flex: 1;
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-color: #2563eb;
}

.press-releases {
    padding: 80px 0;
    background: white;
}

.press-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.press-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 24px;
    align-items: start;
}

.press-icon {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.press-icon i {
    width: 24px;
    height: 24px;
    color: #2563eb;
}

.press-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.press-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 8px;
}

.press-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
    font-size: 14px;
}

.press-meta i {
    width: 16px;
    height: 16px;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 80px 0;
    background: white;
}

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

.contact-info-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.contact-info-icon {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.contact-info-icon i {
    width: 32px;
    height: 32px;
    color: #2563eb;
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.contact-info-card p {
    color: #6b7280;
    line-height: 1.6;
}

.text-sm {
    font-size: 14px;
    color: #9ca3af;
}

.contact-form-section {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-form-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.form-header i {
    width: 32px;
    height: 32px;
    color: #2563eb;
}

.form-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2563eb;
}

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

.map-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-header {
    padding: 24px;
    background: #f8fafc;
}

.map-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.map-header p {
    color: #6b7280;
}

.map-container {
    height: 400px;
}

.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #dbeafe, #dcfce7);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.6;
}

.emergency-contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
}

.emergency-content {
    text-align: center;
    background: white;
    padding: 48px;
    border-radius: 16px;
    border: 2px solid #fecaca;
}

.emergency-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 16px;
}

.emergency-content p {
    color: #7f1d1d;
    margin-bottom: 32px;
}

.emergency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.emergency-item {
    background: #fef2f2;
    padding: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.emergency-icon {
    background: #dc2626;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.emergency-icon i {
    width: 24px;
    height: 24px;
    color: white;
}

.emergency-text span {
    display: block;
    font-weight: 500;
    color: #7f1d1d;
    margin-bottom: 4px;
}

.emergency-text strong {
    color: #dc2626;
    font-size: 18px;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.footer-logo i {
    width: 32px;
    height: 32px;
    color: #60a5fa;
}

.footer-logo h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.footer-logo p {
    font-size: 14px;
    color: #9ca3af;
}

.footer-main p {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-services h4,
.footer-contact h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

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

.footer-services li {
    color: #9ca3af;
    margin-bottom: 8px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #9ca3af;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu.active {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .minister-content,
    .partnership-content,
    .vision-content,
    .challenge-solution-grid,
    .contact-form-grid,
    .featured-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .footer-bottom-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 8px;
    }

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

    .timeline::before {
        left: 24px;
    }

    .timeline-item {
        flex-direction: row;
        padding-left: 64px;
    }

    .timeline-icon {
        left: 24px;
        transform: none;
    }

    .timeline-content {
        width: 100%;
        margin: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

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

    .hero {
        padding: 60px 0;
    }

    .features,
    .services-access,
    .minister-section,
    .partnership-section,
    .commitment-section,
    .cta-section,
    .main-services,
    .startup-services,
    .additional-services,
    .security-support,
    .vision-section,
    .mission-section,
    .values-section,
    .goals-section,
    .timeline-section,
    .challenge-solution,
    .statistics-section,
    .legal-section,
    .future-vision,
    .news-filter,
    .featured-news,
    .news-grid-section,
    .newsletter-section,
    .press-releases,
    .contact-info-section,
    .contact-form-section,
    .faq-section,
    .emergency-contact {
        padding: 60px 0;
    }

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

    .commitment-stats,
    .statistics-grid,
    .goals-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-buttons {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}
