/* Custom CSS Variables using HSL format */
:root {
    --government-primary: 210 100% 25%; /* #003d82 - Navy Blue */
    --government-secondary: 210 15% 35%; /* #4a5568 - Dark Gray */
    --government-light: 210 40% 95%; /* #f0f4f8 - Light Blue */
    --government-accent: 45 100% 51%; /* #ffc107 - Gold accent */
    --background: 210 11% 98%; /* #f5f7fa - Off white */
    --text-primary: 210 11% 15%; /* #2d3748 - Dark text */
    --text-secondary: 210 7% 46%; /* #718096 - Gray text */
    --border-color: 210 14% 89%; /* #e2e8f0 - Light border */
    --shadow: 210 14% 20%; /* #2d3748 with opacity for shadows */
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: hsl(var(--text-primary));
    background-color: hsl(var(--background));
    font-size: 16px;
}

/* Government Theme Colors */
.bg-government {
    background-color: hsl(var(--government-primary)) !important;
}

.bg-government-light {
    background-color: hsl(var(--government-light)) !important;
}

.text-government {
    color: hsl(var(--government-primary)) !important;
}

.btn-government {
    background-color: hsl(var(--government-primary));
    border-color: hsl(var(--government-primary));
    color: white;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-government:hover {
    background-color: hsl(var(--government-secondary));
    border-color: hsl(var(--government-secondary));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px hsla(var(--government-primary), 0.3);
}

.btn-outline-government {
    background-color: transparent;
    border-color: hsl(var(--government-primary));
    color: hsl(var(--government-primary));
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

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

/* Navigation */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 10px hsla(var(--shadow), 0.1);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 1.25rem;
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: hsla(255, 100%, 100%, 0.1);
    transform: translateY(-1px);
}

/* Main Content */
.main-content {
    margin-top: 76px; /* Account for fixed navbar */
    min-height: calc(100vh - 76px);
}

/* Page Headers */
.page-header {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, hsl(var(--government-light)), hsl(var(--background)));
    border-bottom: 1px solid hsl(var(--border-color));
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, hsl(var(--government-light)), hsl(var(--background)));
    position: relative;
    overflow: hidden;
}

/* Portfolio Hero Styling */
.letter-spacing-wide {
    letter-spacing: 0.1em;
}

.text-government-secondary {
    color: hsl(var(--government-secondary)) !important;
}

.identity-descriptors {
    max-width: 800px;
    margin: 0 auto;
}

.descriptor-line {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.descriptor-item {
    color: hsl(var(--text-secondary));
    font-weight: 500;
    font-size: 1rem;
    white-space: nowrap;
}

.descriptor-separator {
    color: hsl(var(--government-primary));
    font-weight: bold;
    margin: 0 0.5rem;
}

.logo-symbol {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.symbol-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(var(--government-primary)), hsl(var(--government-secondary)));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 32px hsla(var(--government-primary), 0.3);
    animation: gentle-pulse 3s ease-in-out infinite;
}

@keyframes gentle-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.mission-statement {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
    background: hsla(255, 100%, 100%, 0.7);
    border-radius: 1rem;
    border: 2px solid hsl(var(--government-light));
    backdrop-filter: blur(10px);
}

.mission-statement h3 {
    color: hsl(var(--government-primary));
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mission-statement p {
    font-size: 1.25rem;
    color: hsl(var(--government-secondary));
    margin: 0;
}

.philosophical-elements {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid hsla(var(--government-primary), 0.2);
}

.philosophical-elements p {
    font-size: 1.1rem;
    color: hsl(var(--government-secondary));
    font-style: italic;
    letter-spacing: 0.02em;
    text-transform: lowercase;
    margin-bottom: 0.75rem;
}

.philosophical-elements p:first-letter {
    text-transform: uppercase;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.profile-avatar {
    display: flex;
    justify-content: center;
}

.avatar-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(var(--government-primary)), hsl(var(--government-secondary)));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 8px 32px hsla(var(--government-primary), 0.3);
}

.current-role-badge {
    margin: 2rem 0;
}

.hero-actions .btn {
    margin: 0.5rem;
    min-width: 160px;
}

/* Stats Section */
.stats-section {
    border-top: 1px solid hsl(var(--border-color));
}

.stat-item {
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    color: hsl(var(--government-primary));
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--government-primary));
    margin-bottom: 0.5rem;
}

.stat-label {
    color: hsl(var(--text-secondary));
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

/* Feature Cards */
.featured-sections {
    padding: 5rem 0;
}

.feature-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 4px 20px hsla(var(--shadow), 0.08);
    transition: all 0.3s ease;
    border: 1px solid hsl(var(--border-color));
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px hsla(var(--shadow), 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: hsl(var(--government-primary));
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: hsl(var(--government-primary));
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: hsl(var(--text-secondary));
    margin-bottom: 2rem;
    flex-grow: 1;
}

/* Content Cards */
.content-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 4px 20px hsla(var(--shadow), 0.08);
    border: 1px solid hsl(var(--border-color));
    margin-bottom: 2rem;
}

.content-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid hsl(var(--government-light));
}

.content-header i {
    font-size: 1.5rem;
    color: hsl(var(--government-primary));
    margin-right: 1rem;
}

.content-header h2,
.content-header h3 {
    color: hsl(var(--government-primary));
    margin: 0;
    font-weight: 600;
}

/* Skills and Certifications */
.skills-list,
.certifications-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skill-item,
.certification-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: hsl(var(--government-light));
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.skill-item:hover,
.certification-item:hover {
    background: hsl(var(--government-primary));
    color: white;
    transform: translateX(8px);
}

.skill-icon,
.cert-icon {
    font-size: 1.25rem;
    margin-right: 1rem;
    color: hsl(var(--government-primary));
}

.skill-item:hover .skill-icon,
.certification-item:hover .cert-icon {
    color: white;
}

.skill-name,
.cert-name {
    font-weight: 500;
}

/* Core Values */
.value-item {
    padding: 1.5rem;
    text-align: center;
}

.value-icon {
    font-size: 2.5rem;
    color: hsl(var(--government-primary));
    margin-bottom: 1rem;
}

.value-item h5 {
    color: hsl(var(--government-primary));
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.value-item p {
    color: hsl(var(--text-secondary));
    font-size: 0.875rem;
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: hsl(var(--border-color));
    transform: translateX(-50%);
}

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

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

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

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.timeline-dot {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: 4px solid hsl(var(--border-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: hsl(var(--government-primary));
    transition: all 0.3s ease;
}

.timeline-dot.active {
    border-color: hsl(var(--government-primary));
    background: hsl(var(--government-primary));
    color: white;
    box-shadow: 0 0 20px hsla(var(--government-primary), 0.3);
}

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

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
}

.experience-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px hsla(var(--shadow), 0.08);
    border: 1px solid hsl(var(--border-color));
    transition: all 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px hsla(var(--shadow), 0.15);
}

.experience-header {
    margin-bottom: 1.5rem;
}

.position-title {
    color: hsl(var(--government-primary));
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.organization-name {
    font-weight: 500;
    color: hsl(var(--text-primary));
    margin-bottom: 0.5rem;
}

.duration-badge {
    display: inline-block;
    background: hsl(var(--government-light));
    color: hsl(var(--government-primary));
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0.5rem 0;
}

.location-info {
    color: hsl(var(--text-secondary));
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.experience-description p {
    color: hsl(var(--text-secondary));
    line-height: 1.6;
}

.current-role-indicator {
    margin-top: 1rem;
}

/* Achievement Cards */
.achievement-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px hsla(var(--shadow), 0.08);
    border: 1px solid hsl(var(--border-color));
    height: 100%;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px hsla(var(--shadow), 0.15);
}

.achievement-icon {
    font-size: 3rem;
    color: hsl(var(--government-primary));
    margin-bottom: 1.5rem;
}

.achievement-card h4 {
    color: hsl(var(--government-primary));
    margin-bottom: 1rem;
    font-weight: 600;
}

.achievement-card p {
    color: hsl(var(--text-secondary));
}

/* Education Timeline */
.education-timeline {
    position: relative;
    padding: 2rem 0;
}

.education-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: hsl(var(--border-color));
}

.education-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-start;
}

.education-marker {
    position: absolute;
    left: 0;
    z-index: 2;
}

.education-dot {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: 4px solid hsl(var(--government-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: hsl(var(--government-primary));
}

.education-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    margin-left: 100px;
    box-shadow: 0 4px 20px hsla(var(--shadow), 0.08);
    border: 1px solid hsl(var(--border-color));
    transition: all 0.3s ease;
    width: 100%;
}

.education-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px hsla(var(--shadow), 0.15);
}

.degree-title {
    color: hsl(var(--government-primary));
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.institution-name {
    font-weight: 500;
    color: hsl(var(--text-primary));
    margin-bottom: 0.5rem;
}

.duration-info {
    color: hsl(var(--text-secondary));
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.degree-type-badge {
    margin-top: 1rem;
}

/* Focus Areas */
.focus-area-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px hsla(var(--shadow), 0.08);
    border: 1px solid hsl(var(--border-color));
    height: 100%;
    transition: all 0.3s ease;
}

.focus-area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px hsla(var(--shadow), 0.15);
}

.focus-icon {
    font-size: 2.5rem;
    color: hsl(var(--government-primary));
    margin-bottom: 1rem;
}

.focus-area-card h5 {
    color: hsl(var(--government-primary));
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Learning Highlight */
.learning-highlight {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 4px 20px hsla(var(--shadow), 0.08);
    border: 1px solid hsl(var(--border-color));
}

.learning-icon {
    font-size: 4rem;
    color: hsl(var(--government-primary));
}

/* Media Cards */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.media-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px hsla(var(--shadow), 0.08);
    border: 1px solid hsl(var(--border-color));
    transition: all 0.3s ease;
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px hsla(var(--shadow), 0.15);
}

.media-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.media-icon {
    font-size: 2rem;
    color: hsl(var(--government-primary));
}

.media-meta {
    text-align: right;
}

.media-type-badge {
    margin-bottom: 0.5rem;
}

.media-year {
    color: hsl(var(--text-secondary));
    font-size: 0.875rem;
}

.media-title {
    color: hsl(var(--government-primary));
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.media-publication {
    color: hsl(var(--text-secondary));
    margin-bottom: 1.5rem;
}

.media-actions {
    text-align: center;
}

/* Impact Cards */
.impact-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px hsla(var(--shadow), 0.08);
    border: 1px solid hsl(var(--border-color));
    height: 100%;
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px hsla(var(--shadow), 0.15);
}

.impact-icon {
    font-size: 3rem;
    color: hsl(var(--government-primary));
    margin-bottom: 1.5rem;
}

.impact-card h4 {
    color: hsl(var(--government-primary));
    margin-bottom: 1rem;
    font-weight: 600;
}

.impact-card p {
    color: hsl(var(--text-secondary));
}

/* Contact Cards */
.contact-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 4px 20px hsla(var(--shadow), 0.08);
    border: 1px solid hsl(var(--border-color));
}

.contact-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid hsl(var(--government-light));
}

.contact-header i {
    font-size: 1.5rem;
    color: hsl(var(--government-primary));
    margin-right: 1rem;
}

.contact-header h3 {
    color: hsl(var(--government-primary));
    margin: 0;
    font-weight: 600;
}

.contact-methods,
.quick-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method,
.quick-link-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    background: hsl(var(--government-light));
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.contact-method:hover,
.quick-link-item:hover {
    background: hsl(var(--government-primary));
    color: white;
    transform: translateY(-2px);
}

.contact-icon,
.link-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: hsl(var(--government-primary));
    margin-top: 0.25rem;
}

.contact-method:hover .contact-icon,
.quick-link-item:hover .link-icon {
    color: white;
}

.contact-details,
.link-details {
    flex: 1;
}

.contact-details h5,
.link-title {
    color: hsl(var(--government-primary));
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-method:hover .contact-details h5,
.quick-link-item:hover .link-title {
    color: white;
}

.contact-link {
    color: hsl(var(--government-primary));
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    color: hsl(var(--government-secondary));
    text-decoration: underline;
}

.contact-method:hover .contact-link {
    color: white;
}

/* Network Cards */
.network-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px hsla(var(--shadow), 0.08);
    border: 1px solid hsl(var(--border-color));
    height: 100%;
    transition: all 0.3s ease;
}

.network-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px hsla(var(--shadow), 0.15);
}

.network-icon {
    font-size: 3rem;
    color: hsl(var(--government-primary));
    margin-bottom: 1.5rem;
}

.network-card h5 {
    color: hsl(var(--government-primary));
    margin-bottom: 1rem;
    font-weight: 600;
}

.network-card p {
    color: hsl(var(--text-secondary));
    margin-bottom: 1.5rem;
}

/* Guidelines */
.guidelines-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 4px 20px hsla(var(--shadow), 0.08);
    border: 1px solid hsl(var(--border-color));
}

.guidelines-header i {
    font-size: 3rem;
    color: hsl(var(--government-primary));
    margin-bottom: 1rem;
}

.guideline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.guideline-icon {
    font-size: 1.25rem;
    color: hsl(var(--government-primary));
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.guideline-content h6 {
    color: hsl(var(--government-primary));
    margin-bottom: 0.25rem;
    font-weight: 600;
}

/* Professional Note */
.professional-note {
    margin-top: 2rem;
}

.professional-note .alert {
    border-left: 4px solid hsl(var(--government-primary));
    background: hsl(var(--government-light));
    border-color: hsl(var(--government-primary));
    color: hsl(var(--government-primary));
}

/* CTA Sections */
.cta-content {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 4px 20px hsla(var(--shadow), 0.08);
    border: 1px solid hsl(var(--border-color));
}

/* Empty State */
.empty-state {
    padding: 4rem 2rem;
}

.empty-state i {
    opacity: 0.5;
}

/* Footer */
.footer {
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 1px solid hsl(var(--border-color));
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
    }
    
    .timeline-marker {
        position: absolute;
        left: 0;
        transform: none;
    }
    
    .timeline-content {
        width: 100%;
        margin-left: 80px;
        margin-right: 0;
        text-align: left !important;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .hero-actions .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .stats-section .col-6 {
        margin-bottom: 2rem;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
    }
    
    .education-card {
        margin-left: 80px;
    }
    
    /* Portfolio Hero Mobile Responsiveness */
    .descriptor-line {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .descriptor-separator {
        display: none;
    }
    
    .descriptor-item {
        font-size: 0.9rem;
    }
    
    .mission-statement {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .mission-statement p {
        font-size: 1.1rem;
    }
    
    .symbol-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }
    
    .page-header {
        padding: 2rem 0 1rem;
    }
    
    .feature-card,
    .content-card,
    .contact-card {
        padding: 1.5rem;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .avatar-circle {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .hero-actions,
    .btn {
        display: none !important;
    }
    
    .main-content {
        margin-top: 0;
    }
    
    .page-header {
        padding: 1rem 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .content-card,
    .feature-card,
    .experience-card {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
.btn:focus,
.nav-link:focus {
    outline: 2px solid hsl(var(--government-primary));
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --government-primary: 0 0% 0%;
        --government-secondary: 0 0% 20%;
        --text-primary: 0 0% 0%;
        --background: 0 0% 100%;
        --border-color: 0 0% 0%;
    }
}
