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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a365d;
    background-color: #ffffff;
}


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

/* Header and Navigation */
.main-header {
    background: #1e3a8a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-container-wide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.coat-of-arms {    
    height: 50px;
    background: white;        
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1e3a8a;
    font-weight: bold;
}

.brand-text h1 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.brand-text .subtitle {
    color: #cbd5e1;
    font-size: 0.875rem;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.nav-link:hover,
.nav-link.active {
    background-color: #2563eb;
    color: white;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    color: #333;
    padding: 10px 20px;
    display: block;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #eff6ff;
    color: #1e3a8a;
}

.language-toggle select {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 6px 12px;
    outline: none;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    background: #1e3a8a;
    border-bottom: 1px solid #e5e7eb;
    padding: 60px 0;
    color: white;
}

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

.hero-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #e2e8f0;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3);
}

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

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

.btn-outline {
    background-color: transparent;
    color: #1e3a8a;
    border: 2px solid #2563eb;
}

.btn-outline:hover {
    background-color: #2563eb;
    color: white;
}

.flag-image {
    width: 100%;
    max-width: 400px;
    height: 250px;
    background: linear-gradient(45deg, #16a34a, #22c55e, #dc2626);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Page Headers */
.page-header {
    background: #1e3a8a;
    color: white;
    padding: 50px 0;
    text-align: center;
    border-bottom: 3px solid #2563eb;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.25rem;
    color: #e2e8f0;
}

/* Business Header Specific */
.business-header .business-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

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

.highlight-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
}

.highlight-text {
    font-size: 0.875rem;
    color: #e2e8f0;
}

/* Business Funding Page Styles */
.funding-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    padding: 80px 0;
    text-align: center;
}

.funding-hero h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.95rem;
    color: #e2e8f0;
    margin-top: 5px;
}

/* Funding Programs Section */
.funding-programs {
    padding: 80px 0;
    background: #f8fafc;
}

.funding-programs h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e3a8a;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.program-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e2e8f0;
}

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

.program-card.featured {
    border: 2px solid #2563eb;
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
}

.program-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #2563eb;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.program-icon {
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 20px;
}

.program-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e3a8a;
}

.funding-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 15px;
}

.program-card p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.program-features {
    list-style: none;
    margin-bottom: 20px;
}

.program-features li {
    color: #475569;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.program-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
}

.program-eligibility {
    background: #f1f5f9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #475569;
}

.program-eligibility strong {
    color: #1e3a8a;
}

/* Credit Facilities Section */
.credit-facilities {
    padding: 80px 0;
    background: white;
}

.credit-facilities h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e3a8a;
}

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

.credit-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.credit-card:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.1);
}

.credit-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e3a8a;
}

.credit-details {
    margin: 20px 0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: #64748b;
    font-weight: 500;
}

.detail-value {
    color: #1e3a8a;
    font-weight: 600;
}

/* Application Process Section */
.application-process {
    padding: 80px 0;
    background: #f8fafc;
}

.application-process h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e3a8a;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e3a8a;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Application Form Section */
.application-form {
    padding: 80px 0;
    background: white;
}

.application-form h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e3a8a;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #f8fafc;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.funding-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-group label {
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.form-actions button {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Support Resources Section */
.support-resources {
    padding: 80px 0;
    background: #f8fafc;
}

.support-resources h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e3a8a;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.resource-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.resource-icon {
    width: 60px;
    height: 60px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    margin: 0 auto 20px;
}

.resource-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e3a8a;
}

.resource-card p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.resource-link {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: #1d4ed8;
}

/* UBI Header Specific */
.ubi-header .ubi-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    min-width: 200px;
}

.stat-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffd700;
}

.stat-card p {
    color: #e2e8f0;
    font-size: 0.875rem;
}

/* Currency Header Specific */
.currency-header .currency-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.currency-stats .stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    text-align: left;
}

.stat-icon {
    font-size: 2rem;
}

.trend {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    margin-left: 10px;
}

.trend.positive {
    background-color: #16a34a;
    color: white;
}

.trend.negative {
    background-color: #dc2626;
    color: white;
}

/* Quick Services Section */
.quick-services {
    padding: 60px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.quick-services h3 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #1e3a8a;
}

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

.service-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    background: #2563eb;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: inline-block;
    letter-spacing: 0.5px;
}

.service-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e40af;
}

.service-card p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid #3b82f6;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.service-link:hover {
    background-color: #3b82f6;
    color: white;
}

/* Announcements Section */
.announcements {
    padding: 80px 0;
    background: #f8fafc;
}

.announcements h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

.announcement-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.announcement-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #3b82f6;
}

.announcement-date {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 10px;
}

.announcement-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e40af;
}

.announcement-item p {
    color: #64748b;
    line-height: 1.7;
}

/* Government Sections */
.government-overview,
.overview-content {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.government-overview h2,
.overview-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1e40af;
}

.government-overview p,
.overview-content p {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.government-branches {
    padding: 80px 0;
    background: #f8fafc;
}

.government-branches h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

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

.branch-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.branch-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
}

.branch-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e40af;
}

.branch-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #3b82f6;
}

.branch-card p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.branch-card li {
    color: #64748b;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.branch-card li:before {
    content: "•";
    color: #2563eb;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 5px;
}

/* Leadership Sections */
.leader-profile {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    margin-bottom: 40px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.leader-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #e2e8f0, #cbd5e1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 0.875rem;
}

.leader-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1e40af;
}

.leader-title {
    font-size: 1rem;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 5px;
}

.leader-term {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 15px;
}

.leader-bio {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.leader-priorities h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 10px;
}

.leader-priorities ul {
    list-style: none;
}

.leader-priorities li {
    color: #64748b;
    padding: 3px 0;
    padding-left: 15px;
    position: relative;
}

.leader-priorities li:before {
    content: "•";
    color: #2563eb;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 3px;
}

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

.minister-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.minister-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.minister-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 8px;
}

.minister-card h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 10px;
}

.minister-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Citizenship Sections */
.services-categories {
    padding: 80px 0;
    background: white;
}

.services-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

.service-category {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e40af;
}

.service-category ul {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.service-category li {
    color: #64748b;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.service-category li:before {
    content: "•";
    color: #2563eb;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

.service-btn {
    display: inline-block;
    background-color: #3b82f6;
    color: white;
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
}

/* UBI Specific Styles */
.ubi-principles {
    margin-top: 40px;
}

.ubi-principles h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1e40af;
}

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

.principle-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.principle-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e40af;
}

.principle-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Business Specific Styles */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e40af;
}

.advantage-card p {
    color: #64748b;
    line-height: 1.7;
}

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

.type-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.type-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e40af;
}

.type-details {
    background: #f8fafc;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.type-details p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

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

.type-features li {
    color: #64748b;
    padding: 5px 0;
    padding-left: 15px;
    position: relative;
}

.type-features li:before {
    content: "•";
    color: #2563eb;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 5px;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

th {
    background-color: #f8fafc;
    font-weight: 600;
    color: #1e40af;
}

.status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.status.completed {
    background-color: #dcfce7;
    color: #16a34a;
}

.status.scheduled {
    background-color: #dbeafe;
    color: #3b82f6;
}

.positive {
    color: #16a34a;
}

.negative {
    color: #dc2626;
}

/* Footer */
.main-footer {
    background-color: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-left: 17px;
    color: white;
}

.footer-section ul {
    list-style: none;
    padding-left: 17px;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #93c5fd;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .branches-grid {
        grid-template-columns: 1fr;
    }
    
    .leader-profile {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .leader-image {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
    
    .ubi-stats,
    .currency-stats,
    .business-highlights {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .hero-text h2 {
        font-size: 1.75rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Additional utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-details h2,
.contact-form-container h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1e40af;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.method-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e40af;
}

.method-info p {
    color: #64748b;
    margin-bottom: 4px;
    line-height: 1.6;
}

.contact-form {
    background: #f8fafc;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e40af;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.department-contacts {
    padding: 80px 0;
    background: #f8fafc;
}

.department-contacts h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

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

.department-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.department-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.department-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e40af;
}

.department-card p {
    color: #64748b;
    margin-bottom: 8px;
    line-height: 1.6;
}

.regional-offices {
    padding: 80px 0;
    background: white;
}

.regional-offices h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

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

.office-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #3b82f6;
    transition: all 0.3s ease;
}

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

.office-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e40af;
}

.office-address {
    font-weight: 600;
    color: #374151;
    margin-bottom: 15px;
}

.office-hours {
    font-weight: 600;
    color: #16a34a;
    margin-top: 10px;
}

.office-services {
    font-style: italic;
    color: #6b7280;
    margin-top: 10px;
}

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

.emergency-contacts-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

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

.emergency-contact-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.emergency-contact-card.urgent {
    border: 2px solid #dc2626;
    background: linear-gradient(135deg, #fee2e2, #ffffff);
}

.emergency-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.emergency-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.emergency-contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e40af;
}

.emergency-number {
    font-size: 2rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 15px;
}

.emergency-contact-card p:last-child {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.social-media-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

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

.social-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.social-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.social-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1e40af;
}

.social-card p {
    color: #64748b;
    margin-bottom: 8px;
    line-height: 1.6;
}

.social-link {
    display: inline-block;
    margin-top: 15px;
    background-color: #3b82f6;
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: #1e40af;
}

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

.feedback-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1e40af;
}

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

.feedback-content p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.feedback-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feedback-option {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feedback-option h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e40af;
}

.feedback-option p {
    color: #64748b;
    margin-bottom: 20px;
    font-size: 1rem;
}

/* About ADAL Section */
.about-adal {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid #e5e7eb;
}

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

.about-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1e40af;
    position: relative;
}

.about-text h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    border-radius: 2px;
}

.about-text p {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-text ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.about-text li {
    color: #334155;
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1.125rem;
    line-height: 1.6;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.about-text li:hover {
    background: rgba(59, 130, 246, 0.05);
    border-radius: 8px;
    padding-left: 40px;
    margin: 0 -10px;
}

.about-text li:before {
    content: "✓";
    color: #16a34a;
    font-weight: bold;
    font-size: 1.25rem;
    position: absolute;
    left: 8px;
    top: 12px;
    background: #dcfce7;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.about-stats {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.about-stats:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #06b6d4);
}

.stat-item {
    padding: 25px 0;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-item:hover {
    background: #f8fafc;
    border-radius: 12px;
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
}

.stat-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e40af;
    position: relative;
}

.stat-item p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Democratic Institutions Section */
.democratic-institutions {
    padding: 80px 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.democratic-institutions h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e40af;
    position: relative;
}

.democratic-institutions h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    border-radius: 2px;
}

.democratic-institutions .container {
    margin-bottom: 20px;
}

.democratic-institutions .container::after {
    content: "These institutions ensure democratic governance and transparency in our republic.";
    display: block;
    text-align: center;
    font-size: 1.125rem;
    color: #64748b;
    margin-top: 30px;
    margin-bottom: 40px;
    font-style: italic;
}

.institutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.institution-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.institution-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #2563eb, #3b82f6, #06b6d4);
    transform: translateX(-4px);
    transition: transform 0.3s ease;
}

.institution-card:hover:before {
    transform: translateX(0);
}

.institution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
    border-color: #3b82f6;
}

.institution-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e40af;
    position: relative;
    padding-bottom: 15px;
}

.institution-card h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    border-radius: 2px;
}

.institution-card p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.institution-card:nth-child(1) h3:after {
    background: linear-gradient(90deg, #dc2626, #ef4444);
}

.institution-card:nth-child(2) h3:after {
    background: linear-gradient(90deg, #16a34a, #22c55e);
}

.institution-card:nth-child(3) h3:after {
    background: linear-gradient(90deg, #ca8a04, #eab308);
}

.institution-card:nth-child(4) h3:after {
    background: linear-gradient(90deg, #7c3aed, #a855f7);
}

/* Voting Page Styles */
.voting-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.voting-overview {
    padding: 80px 0;
    background: white;
}

.voting-principles {
    margin-top: 50px;
}

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

.principle-item {
    background: #f8fafc;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.principle-item:hover {
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.principle-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.principle-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
}

.principle-item p {
    color: #64748b;
    line-height: 1.6;
}

.voting-methods {
    padding: 80px 0;
    background: #f8fafc;
}

.voting-methods h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

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

.method-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.method-card.featured {
    border: 2px solid #3b82f6;
    transform: scale(1.02);
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.method-header {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    padding: 30px;
    position: relative;
    text-align: center;
}

.method-card.featured .method-header {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.method-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.method-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    position: absolute;
    top: 15px;
    right: 15px;
}

.method-content {
    padding: 30px;
}

.method-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
}

.method-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 25px;
}

.authentication-steps,
.app-features,
.station-features,
.portal-requirements {
    margin-bottom: 25px;
}

.authentication-steps h5,
.app-features h5,
.station-features h5,
.portal-requirements h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 15px;
}

.authentication-steps ol {
    list-style: decimal;
    padding-left: 20px;
}

.authentication-steps li,
.app-features li,
.station-features li,
.portal-requirements li {
    color: #475569;
    margin-bottom: 10px;
    line-height: 1.6;
}

.app-downloads {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1e40af;
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
}

.download-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.download-btn.ios {
    background: #000;
}

.download-btn.android {
    background: #01875f;
}

.download-icon {
    font-size: 1.5rem;
}

.download-text span {
    display: block;
    font-size: 0.875rem;
    opacity: 0.8;
}

.download-text strong {
    font-size: 1.125rem;
    font-weight: 700;
}

.method-button {
    display: inline-block;
    background: #3b82f6;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.method-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.voting-security {
    padding: 80px 0;
    background: white;
}

.voting-security h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

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

.security-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 25px;
}

.security-layers {
    margin-top: 40px;
}

.layer-item {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e2e8f0;
}

.layer-item:last-child {
    border-bottom: none;
}

.layer-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 10px;
}

.layer-item p {
    color: #64748b;
    line-height: 1.7;
}

.security-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.security-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.security-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 20px;
}

.metric-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.metric-item:last-child {
    border-bottom: none;
}

.metric-label {
    color: #64748b;
    font-weight: 500;
}

.metric-value {
    color: #16a34a;
    font-weight: 700;
    font-size: 1.125rem;
}

.audit-list {
    margin-top: 15px;
}

.audit-item {
    color: #16a34a;
    font-weight: 500;
    margin-bottom: 8px;
}

.upcoming-elections {
    padding: 80px 0;
    background: #f8fafc;
}

.upcoming-elections h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

.elections-calendar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.election-item {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 30px;
}

.election-date {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    min-width: 100px;
}

.election-date .month {
    font-size: 1rem;
    font-weight: 700;
    opacity: 0.8;
}

.election-date .day {
    font-size: 2rem;
    font-weight: 700;
    margin: 5px 0;
}

.election-date .year {
    font-size: 1rem;
    opacity: 0.8;
}

.election-details {
    flex: 1;
}

.election-details h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 10px;
}

.election-details p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.election-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    background: #dcfce7;
    color: #16a34a;
}

.election-actions {
    display: flex;
    gap: 15px;
}

.voter-resources {
    padding: 80px 0;
    background: white;
}

.voter-resources h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

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

.resource-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.resource-card:hover {
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.resource-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.resource-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
}

.resource-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.resource-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid #3b82f6;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.resource-link:hover {
    background: #3b82f6;
    color: white;
}

/* Investment Page Styles */
.investment-overview {
    padding: 80px 0;
    background: white;
}

.investment-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1e40af;
}

.investment-overview .overview-content p {
    text-align: center;
    font-size: 1.125rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.investment-advantages {
    margin-top: 50px;
}

.investment-sectors {
    padding: 80px 0;
    background: #f8fafc;
}

.investment-sectors h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

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

.sector-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sector-card.featured {
    border: 2px solid #16a34a;
    transform: scale(1.02);
}

.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.sector-header {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    padding: 25px 30px;
    position: relative;
    text-align: center;
}

.sector-card.featured .sector-header {
    background: linear-gradient(135deg, #16a34a, #22c55e);
}

.sector-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.sector-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.sector-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    position: absolute;
    top: 15px;
    right: 15px;
}

.sector-content {
    padding: 30px;
}

.sector-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 25px;
}

.sector-opportunities,
.sector-incentives {
    margin-bottom: 25px;
}

.sector-opportunities h4,
.sector-incentives h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 15px;
}

.sector-opportunities ul,
.sector-incentives ul {
    list-style: none;
    padding: 0;
}

.sector-opportunities li,
.sector-incentives li {
    color: #475569;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.sector-opportunities li:before {
    content: "💼";
    position: absolute;
    left: 0;
}

.sector-incentives li:before {
    content: "✨";
    position: absolute;
    left: 0;
}

.sector-stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #16a34a;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
}

.investment-incentives {
    padding: 80px 0;
    background: white;
}

.investment-incentives h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

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

.incentives-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 25px;
}

.incentive-categories {
    margin-top: 40px;
}

.category-item {
    margin-bottom: 35px;
}

.category-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 15px;
}

.category-item ul {
    list-style: none;
    padding: 0;
}

.category-item li {
    color: #475569;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.category-item li:before {
    content: "•";
    color: #16a34a;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.incentives-calculator {
    display: flex;
    justify-content: center;
}

.calculator-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    max-width: 400px;
    width: 100%;
}

.calculator-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 10px;
    text-align: center;
}

.calculator-card p {
    color: #64748b;
    text-align: center;
    margin-bottom: 25px;
}

.calculator-form .form-group {
    margin-bottom: 20px;
}

.calculator-form label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.calculator-form select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    color: #374151;
    font-size: 1rem;
}

.calc-button {
    width: 100%;
    background: #3b82f6;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.calc-button:hover {
    background: #1d4ed8;
}

.sample-benefits h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 15px;
}

.benefit-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-value {
    font-weight: 700;
    color: #16a34a;
}

.success-stories {
    padding: 80px 0;
    background: #f8fafc;
}

.success-stories h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

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

.story-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.company-logo {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
}

.story-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 5px;
}

.company-info {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 15px;
}

.story-text {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.story-metrics {
    display: flex;
    gap: 20px;
}

.story-metrics .metric {
    text-align: center;
    flex: 1;
}

.story-metrics .metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #16a34a;
    margin-bottom: 5px;
}

.story-metrics .metric-label {
    font-size: 0.875rem;
    color: #64748b;
}

.investment-process {
    padding: 80px 0;
    background: white;
}

.investment-process h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

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

.process-timeline:before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #3b82f6, #06b6d4);
}

.timeline-item {
    position: relative;
    padding: 25px 0 25px 80px;
    margin-bottom: 30px;
}

.timeline-number {
    position: absolute;
    left: 0;
    top: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.timeline-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 10px;
}

.timeline-duration {
    display: inline-block;
    background: #dcfce7;
    color: #16a34a;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
}

.process-support {
    margin-top: 50px;
    text-align: center;
}

.process-support h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 20px;
}

.process-support p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.support-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.service-item {
    color: #16a34a;
    font-weight: 500;
    padding: 10px;
    background: #f0fdf4;
    border-radius: 8px;
    border: 1px solid #bbf7d0;
}

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

.contact-investment h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3,
.inquiry-form h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 25px;
}

.contact-info p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 30px;
}

.office-hours h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 15px;
}

.office-hours p {
    color: #64748b;
    margin-bottom: 5px;
}

.investment-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.investment-form .form-group {
    margin-bottom: 20px;
}

.investment-form label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.investment-form input,
.investment-form select,
.investment-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.investment-form input:focus,
.investment-form select:focus,
.investment-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.checkbox-group {
    margin-top: 25px;
}

.checkbox-group .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 2px;
}

/* Missing Section Styles */

/* Government Page Sections */
.regional-governance {
    padding: 80px 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.regional-governance h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

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

.regional-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 25px;
}

.regional-text h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 20px;
    margin-top: 30px;
}

.regional-text ul {
    list-style: none;
    padding: 0;
}

.regional-text li {
    color: #475569;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.regional-text li:before {
    content: "🏛️";
    position: absolute;
    left: 0;
    top: 2px;
}

.regional-map {
    display: flex;
    justify-content: center;
}

.map-placeholder {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    width: 100%;
    max-width: 400px;
    transition: all 0.3s ease;
}

.map-placeholder:hover {
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    border-color: #94a3b8;
}

.map-placeholder p {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 10px;
}

.map-placeholder small {
    color: #64748b;
    font-style: italic;
}

.unity-dialogue {
    padding: 80px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.unity-dialogue h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1e40af;
}

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

.unity-content p {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 50px;
}

.unity-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: left;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.process-step h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
}

.process-step p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Business Registration Form Styles */
.registration-form-section {
    padding: 80px 0;
    background: #f8fafc;
}

.registration-form-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e40af;
    text-align: center;
    margin-bottom: 15px;
}

.registration-form-section > .container > p {
    color: #64748b;
    font-size: 1.125rem;
    text-align: center;
    margin-bottom: 50px;
}

.business-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form-step {
    padding: 40px 50px;
}

.form-step h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #e2e8f0;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
    color: #374151;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group small {
    display: block;
    color: #64748b;
    font-size: 0.85rem;
    margin-top: 5px;
}

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

.upload-section {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    border: 2px dashed #cbd5e1;
    margin-bottom: 25px;
}

.form-group input[type="file"] {
    border: none;
    background: transparent;
    padding: 10px 0;
}

.step-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 2px solid #e2e8f0;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #3b82f6;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-outline {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-outline:hover {
    background: #3b82f6;
    color: white;
}

.btn-secondary {
    background: #6b7280;
    color: white;
}

.btn-secondary:hover {
    background: #4b5563;
}

.btn-success {
    background: #059669;
    color: white;
}

.btn-success:hover {
    background: #047857;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.application-summary {
    background: #f0f9ff;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #0ea5e9;
    margin-bottom: 30px;
}

.application-summary h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0c4a6e;
    margin-bottom: 20px;
}

.summary-content {
    display: grid;
    gap: 12px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #bae6fd;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item .label {
    font-weight: 600;
    color: #0c4a6e;
}

.summary-item .value {
    font-weight: 700;
    color: #1e40af;
}

.payment-section {
    background: #fefce8;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #facc15;
    margin-bottom: 30px;
}

.payment-section h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #a16207;
    margin-bottom: 20px;
}

.payment-options {
    margin-bottom: 20px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: #3b82f6;
    background: #f8fafc;
}

.payment-option input[type="radio"] {
    width: auto;
    margin: 0;
}

.payment-method strong {
    color: #1e40af;
    display: block;
}

.payment-method small {
    color: #64748b;
}

.crypto-payment-section {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-top: 20px;
}

.crypto-currency-selection {
    margin-bottom: 20px;
}

.payment-details {
    background: #f0f9ff;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #0ea5e9;
}

.payment-info h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0c4a6e;
    margin-bottom: 20px;
}

.payment-amount,
.payment-address {
    margin-bottom: 20px;
}

.amount-label,
.address-label {
    font-weight: 600;
    color: #374151;
    display: block;
    margin-bottom: 8px;
}

.amount-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #059669;
}

.address-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.payment-address-code {
    flex: 1;
    background: #1f2937;
    color: #f9fafb;
    padding: 12px 16px;
    border-radius: 6px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.85rem;
    word-break: break-all;
}

.qr-code-container {
    text-align: center;
    margin: 25px 0;
}

.qr-code {
    border: 8px solid white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.payment-instructions {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

.payment-instructions h6 {
    font-weight: 700;
    color: #92400e;
    margin-bottom: 12px;
}

.payment-instructions ol {
    color: #374151;
    padding-left: 20px;
}

.payment-instructions li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.terms-agreement {
    background: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 3px;
}

.checkmark {
    flex: 1;
    color: #374151;
    line-height: 1.6;
}

.checkbox-label a {
    color: #3b82f6;
    text-decoration: underline;
}

.success-message {
    text-align: center;
    margin-bottom: 40px;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.success-message h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 15px;
}

.success-message p {
    font-size: 1.125rem;
    color: #374151;
}

.next-steps {
    background: #f0f9ff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.next-steps h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0c4a6e;
    margin-bottom: 15px;
}

.next-steps ol {
    color: #374151;
    padding-left: 20px;
}

.next-steps li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-support {
    background: #fef3c7;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.contact-support p {
    color: #92400e;
    margin: 0;
}

.contact-support a {
    color: #1d4ed8;
    font-weight: 600;
}

/* Responsive Design for Forms */
@media (max-width: 768px) {
    .form-step {
        padding: 30px 25px;
    }

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

    .step-navigation {
        flex-direction: column;
        gap: 15px;
    }

    .step-navigation .btn {
        width: 100%;
    }

    .address-container {
        flex-direction: column;
        align-items: stretch;
    }

    .payment-address-code {
        font-size: 0.75rem;
    }
}

/* Application Status Tracker Styles */
.status-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.status-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.status-header p {
    font-size: 1.125rem;
    opacity: 0.9;
}

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

.search-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.search-container h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
}

.search-container > p {
    color: #64748b;
    font-size: 1.125rem;
    margin-bottom: 40px;
}

.search-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.status-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    color: #374151;
    transition: all 0.3s ease;
}

.status-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-hint {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

.status-results-section,
.status-not-found-section {
    padding: 80px 0;
    background: white;
}

.status-card,
.not-found-card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.status-header {
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
    color: white;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.status-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.status-payment_pending {
    background: #fbbf24;
    color: #92400e;
}

.status-badge.status-under_review {
    background: #60a5fa;
    color: #1e40af;
}

.status-badge.status-additional_info_required {
    background: #f87171;
    color: #991b1b;
}

.status-badge.status-approved {
    background: #34d399;
    color: #065f46;
}

.status-badge.status-certificate_issued {
    background: #10b981;
    color: #064e3b;
}

.application-details,
.progress-tracker,
.status-actions {
    padding: 40px;
}

.application-details h4,
.progress-tracker h4,
.status-actions h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 25px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item .label {
    font-weight: 600;
    color: #374151;
}

.detail-item .value {
    font-weight: 700;
    color: #1e40af;
}

.progress-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.progress-step.completed {
    background: #d1fae5;
    border: 2px solid #10b981;
}

.progress-step.current {
    background: #dbeafe;
    border: 2px solid #3b82f6;
}

.progress-step.pending {
    background: #f1f5f9;
    border: 2px solid #e2e8f0;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.progress-step.completed .step-icon {
    background: #10b981;
    color: white;
}

.progress-step.current .step-icon {
    background: #3b82f6;
    color: white;
}

.progress-step.pending .step-icon {
    background: #94a3b8;
    color: white;
}

.step-info h5 {
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 5px;
}

.step-info p {
    color: #64748b;
    margin: 0;
}

.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.not-found-card {
    text-align: center;
    padding: 60px 40px;
}

.not-found-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.not-found-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
}

.not-found-card > p {
    color: #64748b;
    font-size: 1.125rem;
    margin-bottom: 30px;
}

.troubleshooting {
    background: #fef3c7;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    text-align: left;
}

.troubleshooting h4 {
    font-weight: 600;
    color: #92400e;
    margin-bottom: 15px;
}

.troubleshooting ul {
    color: #374151;
    padding-left: 20px;
}

.troubleshooting li {
    margin-bottom: 8px;
}

.help-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.help-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    text-align: center;
    margin-bottom: 50px;
}

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

.help-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.help-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
}

.help-card p {
    color: #64748b;
    margin-bottom: 15px;
}

.help-link {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
}

.help-link:hover {
    text-decoration: underline;
}

/* Responsive Design for Status Tracker */
@media (max-width: 768px) {
    .input-group {
        flex-direction: column;
        gap: 15px;
    }

    .status-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .progress-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .help-actions {
        flex-direction: column;
    }

    .application-details,
    .progress-tracker,
    .status-actions {
        padding: 30px 25px;
    }
}

/* Business Registration Process Timeline */
.registration-process {
    padding: 80px 0;
    background: #f8fafc;
}

.registration-process h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e40af;
    text-align: center;
    margin-bottom: 60px;
}

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

.process-timeline:before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #3b82f6, #1e40af);
    border-radius: 2px;
}

.process-timeline .process-step {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.process-timeline .process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    flex-shrink: 0;
}

.step-content {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    flex: 1;
    position: relative;
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
}

.step-content > p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.step-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.step-content ul li {
    color: #374151;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.step-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-action {
    margin-top: 25px;
}

.step-action .btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step-action .btn-outline {
    color: #3b82f6;
    border: 2px solid #3b82f6;
    background: transparent;
}

.step-action .btn-outline:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

.step-action .btn-primary {
    background: #3b82f6;
    color: white;
    border: 2px solid #3b82f6;
}

.step-action .btn-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-2px);
}

/* Industry-Specific Licenses Section */
.required-licenses {
    padding: 80px 0;
    background: white;
}

.required-licenses h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e40af;
    text-align: center;
    margin-bottom: 60px;
}

.licenses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.license-category {
    background: #f8fafc;
    padding: 30px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.license-category:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15);
}

.license-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #3b82f6;
}

.license-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.license-category ul li {
    color: #374151;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.license-category ul li:last-child {
    border-bottom: none;
}

.license-category ul li:hover {
    color: #1e40af;
    padding-left: 30px;
}

.license-category ul li:before {
    content: "📋";
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.license-authority {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid #e2e8f0;
    color: #64748b;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: right;
    font-style: italic;
}

/* Business Incentives Section */
.business-incentives {
    padding: 80px 0;
    background: #f8fafc;
}

.business-incentives h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e40af;
    text-align: center;
    margin-bottom: 60px;
}

.incentives-content {
    max-width: 1200px;
    margin: 0 auto;
}

.incentive-programs {
    margin-bottom: 60px;
}

.incentive-programs h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 40px;
    text-align: center;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.program-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.program-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
}

.program-card > p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.program-card ul {
    list-style: none;
    padding: 0;
}

.program-card ul li {
    color: #374151;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.program-card ul li:before {
    content: "⭐";
    position: absolute;
    left: 0;
    color: #f59e0b;
}

.tax-benefits {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tax-benefits h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 30px;
    text-align: center;
}

.tax-rates {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.tax-tier {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}

.tax-tier:hover {
    border-color: #10b981;
    transform: translateY(-3px);
}

.tax-tier h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 10px;
}

.tax-rate {
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 20px;
}

.tax-tier ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.tax-tier ul li {
    color: #64748b;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
}

.tax-tier ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

/* Business Support Section */
.business-support {
    padding: 80px 0;
    background: white;
}

.business-support h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e40af;
    text-align: center;
    margin-bottom: 60px;
}

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

.support-category {
    background: #f8fafc;
    padding: 30px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.support-category:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15);
}

.support-category h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
}

.support-category h3:before {
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.support-category h3:has-text("GOVT"):before {
    content: "🏛️";
}

.support-category h3:has-text("FINANCE"):before {
    content: "💰";
}

.support-category h3:has-text("TRAINING"):before {
    content: "📚";
}

.support-category h3:has-text("NETWORK"):before {
    content: "🤝";
}

.support-category ul {
    list-style: none;
    padding: 0;
}

.support-category ul li {
    color: #374151;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.support-category ul li:last-child {
    border-bottom: none;
}

.support-category ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: 700;
}

/* Contact Business Section */
.contact-business {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-business h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e40af;
    text-align: center;
    margin-bottom: 60px;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.contact-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
    position: relative;
    padding-left: 35px;
}

.contact-card h4:before {
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.contact-card h4:has-text("OFFICE"):before {
    content: "🏢";
}

.contact-card h4:has-text("PHONE"):before {
    content: "📞";
}

.contact-card h4:has-text("EMAIL"):before {
    content: "📧";
}

.contact-card h4:has-text("ONLINE"):before {
    content: "💻";
}

.contact-card p {
    color: #64748b;
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-card p strong {
    color: #374151;
    font-weight: 600;
}

.cta-section {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.cta-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
}

.cta-section p {
    color: #64748b;
    font-size: 1.125rem;
    margin-bottom: 30px;
}

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

.cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Responsive Design for Business Page */
@media (max-width: 768px) {
    .process-timeline:before {
        left: 15px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .process-timeline .process-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .step-content {
        margin-left: 0;
    }
    
    .licenses-grid {
        grid-template-columns: 1fr;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .tax-rates {
        grid-template-columns: 1fr;
    }
    
    .support-services {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Government Bonds Styles */
.bonds-header {
    background: linear-gradient(135deg, #065f46 0%, #059669 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.bonds-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.bonds-header p {
    font-size: 1.25rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.bond-highlights {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.bond-highlights .highlight-item {
    text-align: center;
}

.bond-highlights .highlight-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
}

.bond-highlights .highlight-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.bond-overview {
    padding: 80px 0;
    background: white;
}

.bond-overview h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #065f46;
    text-align: center;
    margin-bottom: 60px;
}

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

.overview-card {
    background: #f0fdf4;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #bbf7d0;
    transition: all 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-5px);
    border-color: #059669;
    box-shadow: 0 20px 40px rgba(5, 150, 105, 0.15);
}

.overview-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.overview-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 15px;
}

.overview-card p {
    color: #047857;
    line-height: 1.6;
}

.available-bonds {
    padding: 80px 0;
    background: #f8fafc;
}

.available-bonds h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #065f46;
    text-align: center;
    margin-bottom: 60px;
}

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

.bond-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

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

.bond-header {
    background: linear-gradient(135deg, #065f46, #047857);
    color: white;
    padding: 25px 30px;
    text-align: center;
}

.bond-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.bond-series {
    font-size: 0.9rem;
    opacity: 0.9;
}

.bond-details {
    padding: 30px;
}

.bond-rate {
    text-align: center;
    margin-bottom: 25px;
    background: #f0fdf4;
    padding: 20px;
    border-radius: 12px;
}

.rate-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #059669;
}

.rate-label {
    font-size: 0.9rem;
    color: #047857;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bond-specs {
    margin-bottom: 25px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    color: #6b7280;
    font-weight: 500;
}

.spec-value {
    color: #374151;
    font-weight: 600;
}

.bond-purpose {
    background: #fefce8;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #fbbf24;
    margin-bottom: 25px;
}

.bond-purpose h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 10px;
}

.bond-purpose p {
    color: #451a03;
    line-height: 1.6;
    margin: 0;
}

.purchase-bond {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

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

.bond-purchase-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #065f46;
    text-align: center;
    margin-bottom: 50px;
}

.bond-form {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.bond-form .form-step {
    padding: 50px;
}

.bond-form .form-step h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #bbf7d0;
}

.selected-bond-info {
    background: #f0fdf4;
    padding: 25px;
    border-radius: 16px;
    border: 2px solid #bbf7d0;
    margin-bottom: 30px;
}

.selected-bond-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 15px;
}

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

.bond-summary .summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #d1fae5;
}

.bond-summary .summary-item:last-child {
    border-bottom: none;
}

.investment-summary {
    background: #fefce8;
    padding: 25px;
    border-radius: 16px;
    border: 2px solid #fde68a;
    margin-top: 25px;
}

.investment-summary .summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #fed7aa;
}

.investment-summary .summary-item:last-child {
    border-bottom: none;
    font-size: 1.125rem;
    font-weight: 700;
}

.investment-summary .label {
    color: #92400e;
    font-weight: 600;
}

.investment-summary .value {
    color: #065f46;
    font-weight: 700;
    font-size: 1.1rem;
}

.bond-order-summary {
    background: #f0f9ff;
    padding: 30px;
    border-radius: 16px;
    border: 2px solid #bae6fd;
    margin-bottom: 30px;
}

.bond-order-summary h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0c4a6e;
    margin-bottom: 20px;
}

.order-details {
    display: grid;
    gap: 12px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #bae6fd;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item .label {
    font-weight: 600;
    color: #0c4a6e;
}

.order-item .value {
    font-weight: 700;
    color: #1e40af;
}

.bond-terms-agreement {
    background: #f9fafb;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.bond-next-steps {
    background: #f0fdf4;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.bond-next-steps h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 15px;
}

.bond-next-steps ol {
    color: #047857;
    padding-left: 20px;
}

.bond-next-steps li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.bond-support {
    background: #fef3c7;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 30px;
}

.bond-support p {
    color: #92400e;
    margin: 0;
}

.bond-support a {
    color: #1d4ed8;
    font-weight: 600;
}

.bond-info {
    padding: 80px 0;
    background: #f8fafc;
}

.bond-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #065f46;
    text-align: center;
    margin-bottom: 50px;
}

.info-tabs {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.tab-buttons {
    display: flex;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.tab-button {
    flex: 1;
    padding: 20px;
    border: none;
    background: transparent;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-button.active {
    color: #065f46;
    background: white;
    border-bottom-color: #059669;
}

.tab-button:hover {
    background: #f9fafb;
    color: #047857;
}

.tab-content {
    display: none;
    padding: 40px;
    line-height: 1.7;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 25px;
}

.tab-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.tab-content li {
    margin-bottom: 12px;
    color: #374151;
}

.tab-content strong {
    color: #065f46;
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #065f46;
    margin-bottom: 10px;
}

.faq-item p {
    color: #6b7280;
    margin: 0;
}

/* Responsive Design for Bonds */
@media (max-width: 768px) {
    .bonds-header h1 {
        font-size: 2rem;
    }
    
    .bond-highlights {
        gap: 30px;
    }
    
    .bonds-grid {
        grid-template-columns: 1fr;
    }
    
    .bond-form .form-step {
        padding: 30px 25px;
    }
    
    .tab-buttons {
        flex-wrap: wrap;
    }
    
    .tab-button {
        min-width: 50%;
    }
}

/* Leadership Page Sections */
.council-of-ministers {
    padding: 80px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.council-of-ministers h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

.legislative-leadership,
.judicial-leadership {
    padding: 80px 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.legislative-leadership h2,
.judicial-leadership h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

.legislative-leaders,
.judicial-leaders {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.leader-photo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.leader-photo .leader-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #3b82f6;
}

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

.contact-leadership h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

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

.contact-office {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-office:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.contact-office h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 20px;
}

.contact-office p {
    color: #64748b;
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Constitution Page Sections */
.constitution-preamble {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid #e5e7eb;
}

.constitution-preamble h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1e40af;
}

.preamble-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.preamble-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: #1e40af;
    line-height: 1.8;
    margin-bottom: 30px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
}

.preamble-quote:before {
    content: '"';
    font-size: 4rem;
    color: #3b82f6;
    position: absolute;
    top: -10px;
    left: 20px;
}

.constitution-summary {
    padding: 80px 0;
    background: white;
}

.constitution-summary h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

.constitution-chapters {
    padding: 80px 0;
    background: #f8fafc;
}

.constitution-chapters h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

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

.chapter-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.chapter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.chapter-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
}

.chapter-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.chapter-articles {
    list-style: none;
    padding: 0;
}

.chapter-articles li {
    color: #475569;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.chapter-articles li:before {
    content: "•";
    color: #3b82f6;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.constitution-documents {
    padding: 80px 0;
    background: white;
}

.constitution-documents h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

/* Legal Framework Page Sections */
/* Legal Framework Page Sections */
.legal-overview {
    padding: 80px 0;
    background: white;
}

.legal-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1e40af;
}

.system-components {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.component-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.component-card:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15);
}

.component-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
}

.component-card p {
    color: #64748b;
    line-height: 1.7;
}

.court-system {
    padding: 80px 0;
    background: #f8fafc;
}

.court-system h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

.courts-hierarchy {
    max-width: 1000px;
    margin: 0 auto;
}

.court-level {
    background: white;
    padding: 25px 30px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.court-level:hover {
    border-color: #3b82f6;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.court-level.supreme {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    text-align: center;
}

.court-level.supreme h3 {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.court-level.supreme p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.court-level h3,
.court-level h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 10px;
}

.court-level.supreme h4 {
    color: white;
}

.court-level p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.court-details {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.court-details span {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.courts-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

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

.legal-areas h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

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

.law-area {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.law-area:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.law-area h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
}

.law-area p {
    color: #64748b;
    margin-bottom: 15px;
}

.law-area p strong {
    color: #374151;
    font-weight: 600;
}

.law-area ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.law-area li {
    color: #475569;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.law-area li:before {
    content: "→";
    color: #3b82f6;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

.law-note {
    font-style: italic;
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.legal-procedures {
    padding: 80px 0;
    background: #f8fafc;
}

.legal-procedures h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

.procedures-content {
    max-width: 1200px;
    margin: 0 auto;
}

.procedure-category {
    margin-bottom: 50px;
}

.procedure-category h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 30px;
    text-align: center;
}

.procedure-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.step:hover {
    border-color: #3b82f6;
    transform: translateX(5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 8px;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.legal-aid {
    margin-top: 50px;
}

.legal-aid h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 30px;
    text-align: center;
}

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

.aid-service {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.aid-service:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
}

.aid-service h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
}

.aid-service p {
    color: #64748b;
    margin-bottom: 15px;
    line-height: 1.6;
}

.aid-service ul {
    list-style: none;
    padding: 0;
}

.aid-service li {
    color: #475569;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.aid-service li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

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

.legal-professionals h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

.professionals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.professional-type {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.professional-type:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15);
}

.professional-type h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 10px;
}

.professional-type > p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.requirements h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #e2e8f0;
}

.requirements ul {
    list-style: none;
    padding: 0;
}

.requirements li {
    color: #475569;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.requirements li:before {
    content: "•";
    color: #3b82f6;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

.international-law {
    padding: 80px 0;
    background: #f8fafc;
}

.international-law h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

.international-content {
    max-width: 1200px;
    margin: 0 auto;
}

.treaties-section h3,
.conflict-resolution h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 30px;
}

.treaties-section > p {
    color: #64748b;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.treaty-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.treaty-category {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.treaty-category h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
}

.treaty-category ul {
    list-style: none;
    padding: 0;
}

.treaty-category li {
    color: #475569;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.treaty-category li:before {
    content: "🌐";
    position: absolute;
    left: 0;
    top: 8px;
}

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

.mechanism {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}

.mechanism:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
}

.mechanism h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 10px;
}

.mechanism p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

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

.legal-resources h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.resource-category {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.resource-category:hover {
    border-color: #3b82f6;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.resource-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

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

.resource-link {
    color: #3b82f6;
    text-decoration: none;
    padding: 12px 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: block;
}

.resource-link:hover {
    background: #eff6ff;
    border-color: #3b82f6;
    padding-left: 20px;
}

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

.contact-legal h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

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

.contact-legal-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-legal-card:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-legal-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
}

.contact-legal-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* UBI Page Sections */
.ubi-overview {
    padding: 80px 0;
    background: white;
}

.ubi-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1e40af;
}

.ubi-economics {
    padding: 80px 0;
    background: #f8fafc;
}

.ubi-economics h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

.economics-content {
    max-width: 1200px;
    margin: 0 auto;
}

.economics-stats {
    margin-bottom: 60px;
}

.economics-stats h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 30px;
    text-align: center;
}

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

.stats-grid .stat-item {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}

.stats-grid .stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.stats-grid .stat-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
}

.stats-grid .stat-item p {
    font-size: 1.5rem;
    font-weight: 600;
    color: #10b981;
    margin: 0;
}

.funding-sources h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 30px;
    text-align: center;
}

.funding-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.funding-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    border-top: 4px solid #3b82f6;
    transition: all 0.3s ease;
    position: relative;
}

.funding-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-top-color: #1e40af;
}

.funding-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
}

.funding-item p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

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

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-left-width: 6px;
}

.faq-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
}

.faq-item p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}


.how-it-works {
    padding: 80px 0;
    background: white;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

.technical-details {
    max-width: 1200px;
    margin: 0 auto;
}

.tech-section {
    margin-bottom: 60px;
}

.tech-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 30px;
}

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

.tech-text p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 25px;
}

.tech-text ul {
    list-style: none;
    padding: 0;
}

.tech-text li {
    color: #475569;
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid #e2e8f0;
}

.tech-text li:last-child {
    border-bottom: none;
}

.tech-text li:before {
    content: "⚡";
    position: absolute;
    left: 0;
    top: 12px;
}

.tech-text strong {
    color: #1e40af;
    font-weight: 600;
}

.tech-diagram {
    background: #f8fafc;
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    border: 2px dashed #cbd5e1;
}

.diagram-placeholder p {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 10px;
}

.diagram-placeholder small {
    color: #64748b;
    font-style: italic;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.policy-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.policy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
    background: white;
}

.policy-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
}

.policy-card p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Wallets & Services */
.wallet-services {
    padding: 80px 0;
    background: #f8fafc;
}

.wallet-services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

.wallet-category {
    margin-bottom: 60px;
}

.wallet-category h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 30px;
}

.wallet-category > p {
    color: #64748b;
    font-size: 1.125rem;
    margin-bottom: 30px;
}

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

.wallet-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.wallet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.wallet-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
}

.wallet-card > p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.wallet-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    flex-grow: 1;
}

.wallet-card li {
    color: #475569;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.wallet-card li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

.wallet-downloads {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.download-btn {
    flex: 1;
    min-width: 140px;
    background: #3b82f6;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

.third-party-wallets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.wallet-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.wallet-item:hover {
    border-color: #3b82f6;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.wallet-logo {
    width: 60px;
    height: 60px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wallet-item span {
    font-weight: 600;
    color: #1e40af;
}

.impact-stories {
    padding: 80px 0;
    background: #f8fafc;
}

.impact-stories h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

.why-adal {
    padding: 80px 0;
    background: white;
}

.why-adal h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

/* Currency Page Sections */
.currency-overview {
    padding: 80px 0;
    background: white;
}

.currency-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1e40af;
}

.payment-system {
    padding: 80px 0;
    background: #f8fafc;
}

.payment-system h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

.exchange-rates {
    padding: 80px 0;
    background: white;
}

.exchange-rates h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

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

.wallet-services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

.use-cases {
    padding: 80px 0;
    background: white;
}

.use-cases h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

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

.use-case-card {
    background: #f8fafc;
    padding: 35px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
    background: white;
}

.use-case-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
}

.use-case-card > p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.use-case-card ul {
    list-style: none;
    padding: 0;
}

.use-case-card li {
    color: #475569;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.use-case-card li:before {
    content: "→";
    color: #3b82f6;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

/* Where to Trade AR */
.trading-platforms {
    margin-top: 50px;
}

.trading-platforms h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 30px;
    text-align: center;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.platform-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.platform-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
}

.platform-card > p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.platform-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    flex-grow: 1;
}

.platform-card li {
    color: #475569;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.platform-card li:before {
    content: "•";
    color: #3b82f6;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 6px;
}

.platform-link {
    background: #3b82f6;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
}

.platform-link:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

/* Security & Compliance */
.security-compliance {
    padding: 80px 0;
    background: #f8fafc;
}

.security-compliance h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

.security-content {
    max-width: 1200px;
    margin: 0 auto;
}

.security-features {
    margin-bottom: 60px;
}

.security-features h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 30px;
    text-align: center;
}

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

.security-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    border-top: 4px solid #10b981;
    transition: all 0.3s ease;
}

.security-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-top-color: #059669;
}

.security-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
}

.security-item p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.compliance-info {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.compliance-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 20px;
}

.compliance-info > p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 25px;
}

.compliance-info ul {
    list-style: none;
    padding: 0;
}

.compliance-info li {
    color: #475569;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.7;
    border-bottom: 1px solid #e2e8f0;
}

.compliance-info li:last-child {
    border-bottom: none;
}

.compliance-info li:before {
    content: "🔒";
    position: absolute;
    left: 0;
    top: 12px;
}

.compliance-info strong {
    color: #1e40af;
    font-weight: 600;
}


.security-compliance {
    padding: 80px 0;
    background: #f8fafc;
}

.security-compliance h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

.developer-resources {
    padding: 80px 0;
    background: white;
}

.developer-resources h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

.dev-content {
    max-width: 1200px;
    margin: 0 auto;
}

.api-documentation {
    margin-bottom: 60px;
}

.api-documentation h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 30px;
}

.dev-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.dev-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.dev-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
    background: white;
}

.dev-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
}

.dev-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.dev-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid #3b82f6;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.dev-link:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

.dev-tools {
    background: #f8fafc;
    padding: 40px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
}

.dev-tools h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 20px;
}

.dev-tools ul {
    list-style: none;
    padding: 0;
}

.dev-tools li {
    color: #475569;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid #e2e8f0;
}

.dev-tools li:last-child {
    border-bottom: none;
}

.dev-tools li:before {
    content: "⚙️";
    position: absolute;
    left: 0;
    top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tech-content {
        grid-template-columns: 1fr;
    }
    
    .tech-diagram {
        order: -1;
    }
    
    .policy-grid,
    .wallet-grid,
    .use-cases-grid,
    .platforms-grid,
    .security-grid,
    .dev-grid {
        grid-template-columns: 1fr;
    }
    
    .third-party-wallets {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wallet-downloads {
        flex-direction: column;
    }
    
    .download-btn {
        min-width: auto;
    }
}

/* Business Page Sections */
.business-types {
    padding: 80px 0;
    background: #f8fafc;
}

.business-types h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

.business-incentives {
    padding: 80px 0;
    background: white;
}

.business-incentives h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

.business-support {
    padding: 80px 0;
    background: #f8fafc;
}

.business-support h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

.registration-process {
    padding: 80px 0;
    background: white;
}

.registration-process h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

.required-licenses {
    padding: 80px 0;
    background: #f8fafc;
}

.required-licenses h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

.contact-business {
    padding: 80px 0;
    background: white;
}

.contact-business h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

/* Citizenship Page Sections */
.citizenship-overview {
    padding: 80px 0;
    background: white;
}

.citizenship-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1e40af;
}

.citizenship-pathways {
    padding: 80px 0;
    background: #f8fafc;
}

.citizenship-pathways h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

.pathways-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
}

.pathway-option {
    background: white;
    padding: 35px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pathway-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.pathway-option h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
}

.pathway-option > p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.pathway-option ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pathway-option li {
    color: #475569;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid #e2e8f0;
}

.pathway-option li:last-child {
    border-bottom: none;
}

.pathway-option li:before {
    content: "•";
    color: #3b82f6;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 1.2rem;
}

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

.eligibility-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

.eligibility-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.eligibility-criteria h3,

.criteria-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.criteria-item {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    transition: all 0.3s ease;
}

.criteria-item:hover {
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.criteria-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 8px;
}

.criteria-text p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: white;
    border-color: #3b82f6;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.step-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 8px;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.registration-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.registration-actions .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.registration-process h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 30px;
}


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

.digital-services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

.service-centers {
    padding: 80px 0;
    background: white;
}

.service-centers h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

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

.emergency-services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

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

.support-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e40af;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.support-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.support-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
}

.support-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 10px;
}

.support-card p strong {
    color: #374151;
    font-weight: 600;
}



/* Responsive Design for Citizenship Pathways */
@media (max-width: 768px) {
    .pathways-content {
        grid-template-columns: 1fr;
    }
    
    .pathway-option {
        padding: 25px;
    }
}

/* General content styling for all missing sections */
.legal-overview .overview-content,
.ubi-overview .overview-content,
.currency-overview .overview-content,
.citizenship-overview .overview-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.legal-overview .overview-content p,
.ubi-overview .overview-content p,
.currency-overview .overview-content p,
.citizenship-overview .overview-content p {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Grid layouts for content sections */
.areas-grid,
.procedures-grid,
.resources-grid,
.courts-grid,
.economics-grid,
.steps-grid,
.stories-grid,
.reasons-grid,
.features-grid,
.rates-grid,
.services-grid,
.cases-grid,
.compliance-grid,
.developer-grid,
.pathways-grid,
.eligibility-grid,
.centers-grid,
.emergency-grid,
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Card styles for content items */
.area-card,
.procedure-card,
.resource-card,
.court-card,
.economics-card,
.step-card,
.story-card,
.reason-card,
.feature-card,
.rate-card,
.service-card,
.case-card,
.compliance-card,
.developer-card,
.pathway-card,
.eligibility-card,
.center-card,
.emergency-card,
.support-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: left;
}

.area-card:hover,
.procedure-card:hover,
.resource-card:hover,
.court-card:hover,
.economics-card:hover,
.step-card:hover,
.story-card:hover,
.reason-card:hover,
.feature-card:hover,
.rate-card:hover,
.service-card:hover,
.case-card:hover,
.compliance-card:hover,
.developer-card:hover,
.pathway-card:hover,
.eligibility-card:hover,
.center-card:hover,
.emergency-card:hover,
.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.area-card h3,
.procedure-card h3,
.resource-card h3,
.court-card h3,
.economics-card h3,
.step-card h3,
.story-card h3,
.reason-card h3,
.feature-card h3,
.rate-card h3,
.service-card h3,
.case-card h3,
.compliance-card h3,
.developer-card h3,
.pathway-card h3,
.eligibility-card h3,
.center-card h3,
.emergency-card h3,
.support-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
}

.area-card p,
.procedure-card p,
.resource-card p,
.court-card p,
.economics-card p,
.step-card p,
.story-card p,
.reason-card p,
.feature-card p,
.rate-card p,
.service-card p,
.case-card p,
.compliance-card p,
.developer-card p,
.pathway-card p,
.eligibility-card p,
.center-card p,
.emergency-card p,
.support-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 15px;
}

.portal-features {
    margin-bottom: 8px;
}

/* Lists within cards */
.area-card ul,
.procedure-card ul,
.resource-card ul,
.court-card ul,
.economics-card ul,
.step-card ul,
.story-card ul,
.reason-card ul,
.feature-card ul,
.rate-card ul,
.service-card ul,
.case-card ul,
.compliance-card ul,
.developer-card ul,
.pathway-card ul,
.eligibility-card ul,
.center-card ul,
.emergency-card ul,
.support-card ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.area-card li,
.procedure-card li,
.resource-card li,
.court-card li,
.economics-card li,
.step-card li,
.story-card li,
.reason-card li,
.feature-card li,
.rate-card li,
.service-card li,
.case-card li,
.compliance-card li,
.developer-card li,
.pathway-card li,
.eligibility-card li,
.center-card li,
.emergency-card li,
.support-card li {
    color: #475569;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.area-card li:before,
.procedure-card li:before,
.resource-card li:before,
.court-card li:before,
.economics-card li:before,
.step-card li:before,
.story-card li:before,
.reason-card li:before,
.feature-card li:before,
.rate-card li:before,
.service-card li:before,
.case-card li:before,
.compliance-card li:before,
.developer-card li:before,
.pathway-card li:before,
.eligibility-card li:before,
.center-card li:before,
.emergency-card li:before,
.support-card li:before {
    content: "•";
    color: #3b82f6;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Global Padding and Spacing Fixes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Consistent list styling */
ul {
    margin: 0;
    padding: 0;
}

li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Section spacing */
section {
    margin-bottom: 0;
}

/* Card spacing improvements */
.service-card, .branch-card, .advantage-card, .type-card, 
.department-card, .form-item, .document-item {
    margin-bottom: 0;
}

/* Grid improvements */
.services-grid, .branches-grid, .advantages-grid, .types-grid,
.departments-grid, .forms-grid {
    margin-top: 0;
}

/* Text spacing */
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
}

p {
    margin-bottom: 16px;
    line-height: 1.6;
}

p:last-child {
    margin-bottom: 0;
}

/* Button spacing */
.btn {
    margin: 0;
}

.hero-buttons {
    margin-top: 30px;
}

.hero-buttons .btn {
    margin-right: 15px;
    margin-bottom: 10px;
}

.hero-buttons .btn:last-child {
    margin-right: 0;
}

/* Animation keyframes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-in {
    animation: slideIn 0.6s ease-out;
}

/* Government Styling Updates */
.hero-content .hero-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.hero-content .hero-text h3 {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #cbd5e1;
}

.government-alerts {
    background: #fef3c7;
    border: 1px solid #fbbf24;
    padding: 20px 0;
}

.alert-banner {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.alert-icon {
    background: #f59e0b;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.alert-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 5px;
}

.alert-content p {
    color: #374151;
    margin: 0;
}

.alert-link {
    background-color: #2563eb;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.alert-link:hover {
    background-color: #1d4ed8;
}

.government-departments {
    padding: 60px 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.government-departments h3 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #1e3a8a;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.department-card {
    background: white;
    border: 1px solid #e5e7eb;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.department-card:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.department-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.department-card p {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.dept-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
}

.dept-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.announcement-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.announcement-type {
    background-color: #2563eb;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.announcement-item.priority .announcement-type {
    background-color: #dc2626;
}

.announcements-footer {
    text-align: center;
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Update existing color scheme */
.service-card h4 {
    color: #1e3a8a;
}

.service-link {
    color: #2563eb;
    border-color: #2563eb;
}

.service-link:hover {
    background-color: #2563eb;
}

.announcement-item h4 {
    color: #1e3a8a;
}

/* Forms Page Styles */
.forms-categories {
    padding: 60px 0;
    background: #f8fafc;
}

.forms-nav {
    margin-bottom: 40px;
}

.form-category-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

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

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

.form-category h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 30px;
    text-align: center;
}

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

.form-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.form-item:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.1);
}

.form-icon {
    background: #2563eb;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    display: inline-block;
    letter-spacing: 0.5px;
}

.form-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.form-item p {
    color: #6b7280;
    margin-bottom: 15px;
    line-height: 1.6;
}

.form-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 10px;
    background: #f8fafc;
    border-radius: 6px;
}

.form-type,
.form-size {
    font-size: 0.875rem;
    color: #374151;
    font-weight: 500;
}

.official-documents {
    padding: 60px 0;
    background: white;
}

.official-documents h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 40px;
}

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

.document-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2563eb;
}

.document-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.document-item:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.1);
}

.doc-icon {
    background: #2563eb;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 4px;
    display: inline-block;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.doc-info {
    flex-grow: 1;
}

.doc-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 5px;
}

.doc-info p {
    color: #6b7280;
    margin-bottom: 5px;
}

.doc-size {
    font-size: 0.875rem;
    color: #9ca3af;
    font-weight: 500;
}

.forms-help {
    padding: 60px 0;
    background: #f8fafc;
}

.forms-help h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 40px;
}

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

.help-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.help-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.help-section p {
    color: #6b7280;
    margin-bottom: 15px;
}

.help-section ul {
    list-style: none;
    padding-left: 0;
}

.help-section li {
    color: #374151;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.help-section li:before {
    content: "•";
    color: #2563eb;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

.contact-help {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.contact-help h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.contact-help p {
    color: #6b7280;
    margin-bottom: 25px;
}

.help-contacts {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.help-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 200px;
}

.contact-icon {
    background: #2563eb;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.help-contact strong {
    color: #1e3a8a;
    font-size: 1rem;
    display: block;
}

.help-contact p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

/* Responsive adjustments for forms */
@media (max-width: 768px) {
    .form-category-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 200px;
        text-align: center;
    }

    .forms-grid {
        grid-template-columns: 1fr;
    }

    .documents-categories {
        grid-template-columns: 1fr;
    }

    .help-contacts {
        flex-direction: column;
        text-align: left;
    }

    .document-item {
        flex-direction: column;
        text-align: center;
    }

    /* About ADAL responsive */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h3 {
        font-size: 2rem;
        text-align: center;
    }

    .about-text h3:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-text li {
        font-size: 1rem;
        padding-left: 30px;
    }

    .about-text li:hover {
        margin: 0 -5px;
    }

    .about-stats {
        order: -1;
        margin-bottom: 20px;
    }

    /* Democratic Institutions responsive */
    .democratic-institutions h2 {
        font-size: 2rem;
    }

    .institutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .institution-card {
        padding: 25px;
    }

    .institution-card h3 {
        font-size: 1.25rem;
    }

    /* uni */

    @media (max-width: 768px) {
    .eligibility-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .registration-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .registration-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .stats-grid,
    .funding-breakdown,
    .support-options {
        grid-template-columns: 1fr;
    }
}

    /* Voting page responsive */
    .voting-stats {
        flex-direction: column;
        gap: 15px;
    }

    .methods-grid {
        grid-template-columns: 1fr;
    }

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

    .election-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .election-date {
        margin-bottom: 20px;
    }

    .app-downloads {
        flex-direction: column;
    }

    .download-btn {
        min-width: auto;
    }

    /* Investment page responsive */
    .sectors-grid {
        grid-template-columns: 1fr;
    }

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

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

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .story-metrics {
        justify-content: center;
        gap: 40px;
    }

    .process-timeline:before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-number {
        left: -15px;
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }

    /* Missing sections responsive */
    .regional-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .regional-map {
        order: -1;
    }

    .unity-process {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .legislative-leaders,
    .judicial-leaders {
        gap: 30px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .chapters-grid {
        grid-template-columns: 1fr;
    }

    .areas-grid,
    .procedures-grid,
    .resources-grid,
    .courts-grid,
    .economics-grid,
    .steps-grid,
    .stories-grid,
    .reasons-grid,
    .features-grid,
    .rates-grid,
    .services-grid,
    .cases-grid,
    .compliance-grid,
    .developer-grid,
    .pathways-grid,
    .eligibility-grid,
    .centers-grid,
    .emergency-grid,
    .support-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* News and Press Release Styles */
.page-header {
    background: #2563eb;
    color: white;
    padding: 60px 0 40px;
}

.page-title h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.page-title p {
    font-size: 1.25rem;
    text-align: center;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.news-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

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

.news-content {
    padding: 60px 0;
    background: #f8fafc;
}

.news-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 50px;
}

.news-article {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.news-article.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
    min-height: 400px;
}

.article-image {
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.article-image img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
}

.article-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.article-type {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-type.press-release {
    background: #dbeafe;
    color: #1e40af;
}

.article-type.announcement {
    background: #dcfce7;
    color: #166534;
}

.article-type.policy {
    background: #fef3c7;
    color: #92400e;
}

.article-type.economy {
    background: #e0e7ff;
    color: #3730a3;
}

.article-date {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.news-article h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
    line-height: 1.3;
}

.news-article h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-article p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.read-more {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #1e40af;
    text-decoration: underline;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-buttons span {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.share-btn {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.share-btn:hover {
    color: #2563eb;
    background: #f1f5f9;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-btn {
    background: white;
    border: 2px solid #e2e8f0;
    color: #64748b;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 45px;
}

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

.press-center {
    background: white;
    padding: 60px 0;
}

.press-center h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 50px;
}

.press-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
}

.press-contact h3,
.press-resources h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 20px;
}

.press-contact p {
    color: #64748b;
    margin-bottom: 8px;
    line-height: 1.6;
}

.press-resources ul {
    list-style: none;
}

.press-resources li {
    margin-bottom: 10px;
}

.press-resources a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.press-resources a:hover {
    color: #1e40af;
    text-decoration: underline;
}

.newsletter-signup {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    padding: 60px 0;
}

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

.newsletter-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #1a365d;
}

.newsletter-form input::placeholder {
    color: #64748b;
}

.newsletter-form button {
    background: white;
    color: #1e3a8a;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #f8fafc;
    transform: translateY(-1px);
}

/* Responsive Design for News Page */
@media (max-width: 1024px) {
    .news-article.featured {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .article-image {
        padding: 30px;
    }
    
    .press-info {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .page-title h1 {
        font-size: 2.5rem;
    }
    
    .page-title p {
        font-size: 1.125rem;
    }
    
    .news-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form button {
        padding: 12px 24px;
    }
    
    .article-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .share-buttons {
        align-self: flex-start;
    }
}

@media (max-width: 640px) {
    .news-content {
        padding: 40px 0;
    }
    
    .press-center {
        padding: 40px 0;
    }
    
    .newsletter-signup {
        padding: 40px 0;
    }
    
    .article-content {
        padding: 20px;
    }
    
    .page-header {
        padding: 40px 0 30px;
    }
    
    .news-filters {
        margin-top: 30px;
    }
    
    .press-center h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .newsletter-content h3 {
        font-size: 1.75rem;
    }
}

/* RTL Support for Arabic */
.rtl-layout {
    direction: rtl;
}

.rtl-layout .nav-brand {
    flex-direction: row-reverse;
}

.rtl-layout .brand-text {
    text-align: right;
}

.rtl-layout .nav-menu {
    flex-direction: row-reverse;
}

.rtl-layout .language-toggle {
    margin-right: auto;
    margin-left: 0;
}

.rtl-layout .hero-content {
    text-align: right;
}

.rtl-layout .hero-buttons {
    justify-content: flex-end;
}

.rtl-layout .services-grid,
.rtl-layout .departments-grid {
    text-align: right;
}

.rtl-layout .service-card,
.rtl-layout .department-card {
    text-align: right;
}

.rtl-layout .about-content {
    flex-direction: row-reverse;
}

.rtl-layout .footer-content {
    text-align: right;
}

.rtl-layout .dropdown-content {
    left: auto;
    right: 0;
}

.rtl-layout .announcement-header {
    flex-direction: row-reverse;
}

.rtl-layout .announcement-date {
    text-align: left;
}

.rtl-layout .mobile-menu-toggle {
    order: -1;
}

/* Arabic font support */
.rtl-layout,
.rtl-layout * {
    font-family: 'Inter', 'Amiri', 'Arial Unicode MS', 'Tahoma', sans-serif;
}

/* Adjust margins and paddings for RTL */
.rtl-layout .nav-link {
    margin: 0 0 0 20px;
}

.rtl-layout .service-icon,
.rtl-layout .announcement-type {
    margin: 0 0 0 15px;
}

.rtl-layout .coat-of-arms {
    order: 2;
}

.rtl-layout .brand-text {
    order: 1;
}

/* Language selector RTL adjustments */
.rtl-layout #language-select {
    text-align: right;
    padding-right: 10px;
    padding-left: 30px;
}