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

:root {
    --primary-green: #6B7C3C;
    --primary-orange: #F5A623;
    --secondary-orange: #FF8C42;
    --light-green: #8B9C5C;
    --text-dark: #333;
    --text-light: #666;
    --white: #fff;
    --gray-light: #f0f0f0;
    --gray-medium: #e0e0e0;
    --black: #000;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

body.menu-open {
    overflow: hidden;
}

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

/* Navigation */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.navbar {
    padding: 1rem 0;
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    height: 80px;
    width: auto;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-btn {
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
}

.nav-btn:hover {
    background-color: var(--light-green);
    transform: scale(1.05);
}

.nav-btn.active {
    box-shadow: 0 0 0 4px var(--primary-orange);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-medium);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
}

.mobile-nav.active {
    max-height: 500px;
    padding-top: 16px;
    padding-bottom: 16px;
}

.mobile-nav .nav-btn {
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-nav.active .nav-btn {
    opacity: 1;
    transform: translateY(0);
}

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

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

    .mobile-nav.active {
        display: flex;
    }
    
    .logo {
        max-height: 50px;
    }
    
    .mobile-nav .nav-btn {
        font-size: 16px;
        padding: 1rem;
        border-radius: 8px;
        margin: 0 10px;
    }
    
    .mobile-nav .nav-btn:active {
        transform: scale(0.95);
        background-color: var(--gray-light);
    }
}

/* Main Content */
main {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.65));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 750px;
    padding: 0 1rem;
}

.hero h2 {
    font-size: 2.3rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    text-shadow: 3px 5px 12px rgba(0, 0, 0, 0.9);
    letter-spacing: 0.5px;
    animation: fadeIn 0.8s ease-in;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--primary-orange);
    margin-bottom: 1.25rem;
    font-weight: 900;
    text-shadow: 4px 6px 15px rgba(0, 0, 0, 1);
    line-height: 1.2;
    animation: fadeIn 0.8s ease-in 0.2s both;
}

.hero p {
    font-size: 1.15rem;
    font-weight: 500;
    text-shadow: 3px 4px 10px rgba(0, 0, 0, 0.9);
    line-height: 1.7;
    max-width: 700px;
    animation: fadeIn 0.8s ease-in 0.4s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
section {
    padding: 4rem 0;
}

section.bg-light {
    background-color: var(--gray-light);
}

section.bg-white {
    background-color: var(--white);
}

section.bg-gradient {
    background: linear-gradient(to right, var(--primary-green), var(--light-green));
    color: var(--white);
}

section.bg-orange-gradient {
    background: linear-gradient(to right, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
}

section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-green);
}

section.bg-gradient h2,
section.bg-orange-gradient h2 {
    color: var(--white);
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .program-image img {
        height: 350px;
    }
    
    .program-content {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    section {
        padding: 2.5rem 0;
    }

    section h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .hero {
        height: 500px;
    }

    .hero h2 {
        font-size: 1.5rem;
        font-weight: 700;
        letter-spacing: 0.3px;
    }

    .hero h1 {
        font-size: 2.2rem;
        font-weight: 900;
        line-height: 1.3;
    }

    .hero p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 1.5rem;
    }
    
    .container {
        padding: 0 1.25rem;
    }
    
    .btn {
        font-size: 1rem;
        padding: 0.9rem 2rem;
        width: 100%;
        max-width: 350px;
    }
}

/* Cards */
.card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-light);
    line-height: 1.8;
}

.card ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.card ul li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Card with Overlay */
.card-overlay {
    position: relative;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 300px;
}

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

.card-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}

.card-overlay:hover img {
    transform: scale(1.1);
}

.card-overlay-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 300px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.card-overlay-content h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.card-overlay-content p {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.6;
}

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

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--light-green);
    transform: scale(1.05);
}

.btn-secondary {
    background-color: var(--primary-orange);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary-orange);
    transform: scale(1.05);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-green);
}

.btn-white:hover {
    background-color: var(--gray-light);
}

/* Text Content */
.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.quote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

blockquote {
    border-left: 4px solid var(--primary-orange);
    padding-left: 1.5rem;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    margin: 2rem 0;
}

/* Image Sections */
.image-wrapper {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    background: #f0f0f0;
    line-height: 0;
    position: relative;
    height: 100%;
    transform: translateZ(0);
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02); /* Fix for sub-pixel rendering gaps */
    transform-origin: center;
}

/* Fix for images with white space */
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* Photo Gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .photo-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item {
        margin-bottom: 1rem;
    }
    
    .gallery-item img {
        border-radius: 8px;
    }
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-box {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
    
    .mission-box,
    .vision-box {
        padding: 2rem 1.5rem;
    }
    
    .mission-box h3,
    .vision-box h3 {
        font-size: 1.5rem;
    }
    
    .mission-box p,
    .vision-box p {
        font-size: 0.95rem;
    }
    
    .service-box {
        padding: 1.5rem;
    }
    
    .service-box h3 {
        font-size: 1.3rem;
    }
    
    .service-box ul li {
        font-size: 0.9rem;
    }
}

.stat-box {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* Mission/Vision Boxes */
.mission-box {
    background: #6B7C3C;
    color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.mission-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.mission-box p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.vision-box {
    background: #F5A623;
    color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.vision-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.vision-box p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Program Sections */
.program-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.program-section-reverse {
    direction: ltr;
}

.program-image {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    background: #f0f0f0;
}

.program-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.program-content {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.program-content h3 {
    font-size: 1.8rem;
    color: #5a6b3d;
    margin-bottom: 1rem;
    font-weight: 700;
}

.program-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.program-content li {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

@media (max-width: 768px) {
    .program-section,
    .program-section-reverse {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .program-content {
        padding: 1.5rem;
    }
    
    .program-content h3 {
        font-size: 1.5rem;
    }
    
    .program-content p {
        font-size: 0.95rem;
    }
    
    .program-content ul li {
        font-size: 0.9rem;
    }
    
    .program-image {
        border-radius: 12px;
        margin-bottom: 1.5rem;
    }
    
    .program-image img {
        height: 250px;
        object-fit: cover;
        object-position: center top;
    }
    
    .program-section,
    .program-section-reverse {
        margin-bottom: 2rem;
    }
}

/* Service Boxes */
.service-box {
    background: #6B7C3C;
    color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.service-box p {
    font-size: 1rem;
}

.service-box-orange {
    background: linear-gradient(135deg, #F5A623, #FF8C42);
}

/* Healthy Living Box */
.healthy-living-box {
    background: linear-gradient(135deg, #F5A623, #FF8C42);
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.healthy-living-box h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
}

.healthy-living-box ul {
    list-style: none;
    padding: 0;
    font-size: 1.1rem;
}

.healthy-living-box li {
    margin-bottom: 0.5rem;
}

/* F.A.M.N Pillars */
.famn-pillar {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.famn-pillar:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.famn-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.famn-pillar h3 {
    font-size: 1.4rem;
    color: #6B7C3C;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.famn-pillar p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Video Placeholder */
.video-placeholder {
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #e0e0e0, #f0f0f0);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 2px solid #d0d0d0;
}

.video-play-icon {
    font-size: 5rem;
    color: #6B7C3C;
    margin-bottom: 1rem;
    opacity: 0.7;
}

/* Testimonial Cards */
.testimonial-card {
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .famn-icon {
        font-size: 2.5rem;
    }
    
    .famn-pillar {
        padding: 1.5rem 1rem;
    }
    
    .famn-pillar h3 {
        font-size: 1.2rem;
    }
    
    .famn-pillar p {
        font-size: 0.95rem;
    }
    
    .video-play-icon {
        font-size: 3rem;
    }
    
    .card img {
        height: 250px;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .card h3 {
        font-size: 1.3rem;
    }
    
    .card p {
        font-size: 0.95rem;
    }
    
    .card ul li {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    /* Mobile Testimonials */
    .testimonial-card > div {
        padding: 1.75rem !important;
    }
    
    .testimonial-card p {
        font-size: 1rem !important;
    }
    
    /* Mobile Touch Optimization */
    a, button {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Improved Mobile Spacing */
    blockquote {
        font-size: 1.1rem !important;
        padding: 1rem;
    }
    
    /* Mobile Typography */
    .intro-text {
        font-size: 1rem !important;
    }
    
    .quote {
        font-size: 1.05rem !important;
        padding: 1rem;
    }
    
    /* Mobile Images */
    img {
        max-width: 100%;
        height: auto;
    }
    
    .image-wrapper img {
        border-radius: 8px;
    }
    
    /* Mobile Healthy Living Box */
    .healthy-living-box {
        padding: 2rem 1.5rem;
    }
    
    .healthy-living-box h3 {
        font-size: 1.5rem;
    }
    
    .healthy-living-box li {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .hero {
        height: 450px;
    }
    
    .hero h2 {
        font-size: 1.3rem;
    }
    
    .hero h1 {
        font-size: 1.9rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        font-size: 0.8rem;
        padding: 0.75rem 1.25rem;
    }
    
    .card img {
        height: 220px;
    }
    
    .card ul li {
        font-size: 0.85rem;
    }
    
    .testimonial-card > div {
        padding: 1.5rem !important;
    }
    
    .famn-pillar {
        padding: 1.25rem 0.75rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .program-image img {
        height: 220px;
    }
    
    .program-content {
        padding: 1.5rem;
    }
    
    .program-content h3 {
        font-size: 1.4rem;
    }
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 3rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        padding-bottom: 1rem;
    }
    
    .footer-bottom {
        padding-top: 2rem;
    }
    
    .footer-logo {
        max-width: 60px;
    }
}

.footer-section h3 {
    font-size: 1.2rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: var(--gray-light);
}

.footer-section a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-orange);
}

.social-icon-link {
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.social-icon-link:hover {
    transform: translateY(-2px);
}

.social-icon-link svg {
    transition: fill 0.3s ease;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 0.5rem;
    opacity: 0.75;
}

.footer-nature-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-bottom p {
    color: var(--gray-light);
    font-size: 0.9rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-white {
    color: var(--white);
}

.text-primary {
    color: var(--primary-green);
}

.text-orange {
    color: var(--primary-orange);
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }

.hidden {
    display: none;
}

/* Page Transitions */
.page-content {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

