:root {
    /* Color Variables (from React project index.css) */
    --background: 220 20% 97%;
    --foreground: 222 47% 11%;

    --primary: 228 60% 25%;
    --primary-foreground: 0 0% 100%;

    --secondary: 210 40% 96%;
    --secondary-foreground: 228 60% 25%;

    --muted: 220 15% 93%;
    --muted-foreground: 220 10% 45%;

    --accent: 210 50% 45%;
    --accent-foreground: 0 0% 100%;

    --border: 220 15% 88%;
    --input: 220 15% 88%;
    --ring: 228 60% 25%;

    --card: 0 0% 100%;
    --card-foreground: 222 47% 11%;

    --navy: 228 60% 25%;
    --navy-dark: 228 65% 15%;
    --navy-light: 228 40% 35%;
    --gold: 210 50% 45%;
    --gold-light: 210 40% 55%;

    --radius: 0.5rem;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Layout Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 6rem 0;
    }
}

/* Navbar Symbols & Components */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: #ffffff;
    /* Solid white background */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: 4.5rem;
    /* Slightly increased height */
    display: flex;
    align-items: center;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo img {
    height: 2.5rem;
    width: 2.5rem;
    object-fit: contain;
    border-radius: 0.25rem;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: hsl(var(--primary));
}

@media (max-width: 640px) {
    .nav-logo-text {
        display: none;
    }
}

.nav-links {
    display: none;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    transition: color 200ms;
    color: hsl(var(--foreground));
}

.nav-link:hover,
.nav-link.active {
    color: hsl(var(--accent));
}

.nav-actions {
    display: none;
}

@media (min-width: 768px) {
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0.25rem;
    transition: all 300ms;
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: hsl(var(--navy-light));
}

.btn-accent {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0.25rem;
    transition: all 300ms;
    background-color: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
    border: none;
    cursor: pointer;
}

.btn-accent:hover {
    background-color: hsl(var(--gold-light));
}

.nav-admin-btn {
    padding: 0.5rem;
    border-radius: 9999px;
    border: 1px solid hsl(var(--border));
    background: transparent;
    transition: background-color 200ms;
    color: hsl(var(--primary));
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-admin-btn:hover {
    background-color: hsl(var(--muted));
}

.mobile-toggle {
    display: block;
    padding: 0.5rem;
    color: hsl(var(--primary));
    background: transparent;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-toggle {
        display: none;
    }
}

.mobile-menu {
    display: none;
    background-color: hsl(var(--card));
    border-top: 1px solid hsl(var(--border));
    padding: 1rem;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu .nav-link {
    display: block;
    padding: 0.75rem 0;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid hsl(var(--border));
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Align content to the left */
    overflow: hidden;
}

.hero .container {
    margin-left: 0;
    /* Remove horizontal centering */
    max-width: 100%;
    /* Allow container to span full width to start from left */
    padding-left: 2rem;
    /* Add consistent left padding */
}

@media (min-width: 1024px) {
    .hero .container {
        padding-left: 5%;
        /* More breathing room on larger screens */
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Blue area on the left for the text, fading to clear on the right for the image */
    background: linear-gradient(to right,
            hsla(228, 65%, 15%, 0.95) 0%,
            hsla(228, 65%, 15%, 0.8) 35%,
            hsla(228, 65%, 15%, 0) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 8rem 0;
    text-align: left;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-logo-large {
    margin-bottom: 2.5rem;
}

.hero-logo-large img {
    height: 220px;
    width: auto;
    border-radius: 1.25rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    background: white;
    padding: 15px;
    border: 5px solid hsl(var(--accent));
}

.hero-label {
    font-size: 1rem;
    /* Increased size */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 1.5rem;
    color: hsl(var(--accent));
}

.hero-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    /* Reduced base size */
    font-weight: 800;
    color: hsl(var(--primary-foreground));
    line-height: 1.1;
    max-width: 45rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
        /* Reduced desktop size */
    }
}

.hero-description {
    margin-top: 2rem;
    font-size: 1.35rem;
    /* Increased size */
    color: hsla(222, 0%, 100%, 0.9);
    max-width: 42rem;
    font-family: var(--font-body);
    line-height: 1.5;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.hero-btns .btn-primary,
.hero-btns .btn-accent {
    padding: 1rem 2rem;
    /* Larger buttons */
    font-size: 1rem;
}

/* About Section */
.about {
    background-color: hsl(var(--card));
}

.section-label {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
    color: hsl(var(--accent));
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: hsl(var(--primary));
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.about-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.about-paragraph {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
}

.badge-group {
    display: flex;
    flex-wrap: nowrap;
    /* Keep on the same line */
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    overflow-x: auto;
    /* Allow scrolling on very small screens instead of breaking line */
}

.badge-outline {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    border: 1px solid hsl(var(--primary));
    color: hsl(var(--primary));
}

.about-cards {
    display: grid;
    gap: 1.5rem;
}

.card-feature {
    background-color: hsl(var(--background));
    border-radius: 0.5rem;
    padding: 1.5rem;
    border: 1px solid hsl(var(--border));
}

.card-feature h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--primary));
    margin-bottom: 0.5rem;
}

.card-feature p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

/* Service Descriptions Blue Request */
.service-desc-blue {
    color: #ffffff !important;
    /* Reverted to white */
    font-size: 1.25rem !important;
    /* Larger text */
    font-weight: 700 !important;
    /* Bold */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8) !important;
    /* Increased shadow for better visibility on images */
    background: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    width: auto !important;
    display: block !important;
    text-align: left !important;
}

/* Services Section */
.services {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.services .section-label {
    color: #ffffff;
    font-size: 1.1rem;
    /* Increased size */
    margin-bottom: 1rem;
}

.services .section-title {
    color: hsl(var(--primary-foreground));
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms;
}

.service-card:hover img {
    transform: scale(1.08);
}

.service-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    background: linear-gradient(to top, hsla(var(--navy-dark), 0.85) 0%, transparent 60%);
}

.service-overlay h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--primary));
    /* Blue text */
    background-color: rgba(255, 255, 255, 0.95);
    /* White background for visibility */
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    display: inline-block;
    /* Wrap nicely */
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-overlay p {
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
    background-color: hsla(var(--primary), 0.85);
    /* Visible primary color background */
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    display: inline-block;
}

.service-btn {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    background-color: hsl(var(--primary));
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0.25rem;
    width: fit-content;
    transition: background-color 200ms;
}

.service-btn:hover {
    background-color: hsl(var(--navy-light));
}

/* Team Section */
.team {
    background-color: hsl(var(--background));
    text-align: center;
}

.team-description {
    color: hsl(var(--muted-foreground));
    margin-bottom: 3rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid hsl(var(--border));
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 300ms, box-shadow 300ms;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.team-img-wrapper {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 1.5rem;
    border-radius: 9999px;
    /* Circle */
    overflow: hidden;
    border: 3px solid hsl(var(--accent));
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.team-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: hsl(var(--primary));
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.95rem;
    font-weight: 700;
    color: hsl(var(--accent));
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team-bio {
    font-size: 0.9rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.team-contact-info {
    width: 100%;
    border-top: 1px solid hsl(var(--border));
    padding-top: 1rem;
    margin-top: auto;
}

.team-email {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: hsl(var(--primary));
    margin-bottom: 0.25rem;
    word-break: break-all;
}

.team-tel {
    display: block;
    font-size: 0.85rem;
    color: hsl(var(--muted-foreground));
    font-weight: 500;
}

/* Contact Section Updates */
.updates-card {
    max-width: 42rem;
    margin: 0 auto;
    background-color: hsl(var(--card));
    border-radius: 0.5rem;
    padding: 2rem;
    border: 1px solid hsl(var(--border));
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form-container {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 0.75rem;
    border: 1px solid hsl(var(--border));
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(var(--primary));
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.4rem;
    border: 1px solid hsl(var(--border));
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 200ms, ring 200ms;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: hsl(var(--accent));
    box-shadow: 0 0 0 2px hsla(var(--accent), 0.2);
}

.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .contact-details-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.detail-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid hsl(var(--border));
    text-align: center;
}

.detail-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: hsl(var(--primary));
}

.detail-card p {
    font-size: 0.9rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.detail-card .icon-label {
    color: hsl(var(--accent));
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: block;
}

.contact-map {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    min-height: 300px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer Section */
.footer {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    padding-top: 3rem;
    padding-bottom: 1.5rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 0.25rem;
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
}

.footer-brand p {
    font-size: 0.875rem;
    color: hsla(210, 100%, 100%, 0.7);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-brand a {
    font-size: 0.875rem;
    color: hsl(var(--accent));
}

.footer-brand a:hover {
    text-decoration: underline;
}

.footer h4 {
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: hsla(210, 100%, 100%, 0.7);
    transition: color 200ms;
}

.footer-links a:hover {
    color: hsl(var(--accent));
}

.footer-contact {
    display: grid;
    gap: 0.75rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: hsla(210, 100%, 100%, 0.7);
}

.footer-contact svg {
    color: hsl(var(--accent));
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid hsla(210, 100%, 100%, 0.2);
    margin-top: 2rem;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: hsla(210, 100%, 100%, 0.5);
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Up Button */
.scroll-up-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 9999;
    width: 3rem;
    height: 3rem;
    background-color: hsl(var(--primary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.scroll-up-btn.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    width: 3.5rem;
    height: 3.5rem;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Footer Bottom Powered By Styling */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-bottom>span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.powered-by {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-decoration: none;
    transition: opacity 200ms;
}

.powered-by img {
    height: auto;
    width: 140px;
    /* Reduced width for a more subtle footer presence */
    object-fit: contain;
    background: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
    vertical-align: middle;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.powered-by:hover img {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* Mission Logo Positioning */
.mission-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mission-top-logo {
    margin-bottom: 2rem;
    /* Separated from the card as requested */
    z-index: 5;
}

.mission-top-logo img {
    height: 180px;
    /* Increased size as requested */
    width: auto;
    border-radius: 1rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background: white;
    padding: 15px;
    border: 3px solid hsl(var(--accent));
}

.mission-wrapper .card-feature {
    width: 100%;
}

@media (max-width: 640px) {
    .mission-top-logo img {
        height: 120px;
    }
}

.powered-by:hover {
    opacity: 0.8;
}

/* Reusable Page Hero */
.page-hero {
    position: relative;
    padding: 6rem 0;
    background-color: hsl(var(--navy-dark));
    color: white;
    overflow: hidden;
}

.page-hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.page-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, hsla(228, 65%, 15%, 0.9) 0%, hsla(228, 65%, 15%, 0.6) 100%);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero .hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: hsl(var(--accent));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.125rem;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .page-hero {
        padding: 4rem 0;
    }

    .page-hero h1 {
        font-size: 2.25rem;
    }
}

/* Admin Export Button Style */
.btn-export {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    border-radius: 9999px;
    background: #10b981;
    color: white !important;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}

.btn-export:hover {
    background: #059669;
}