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

body {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Accent variables */
:root {
    --brand-primary: #2f6d5d;
    --brand-primary-600: #275b4e;
    --brand-secondary: #e5e7eb;
    --brand-accent: #8fa79f;
    --ink: #1f2937;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

p {
    margin-bottom: 1rem;
}

a { text-decoration: none; color: var(--brand-primary); transition: color 0.3s ease; }
a:hover { color: #275b4e; }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
}

.primary { background-color: var(--brand-primary); color: #fff; border: 2px solid var(--brand-primary); box-shadow: 0 8px 16px rgba(47,109,93,.2); }

.primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
    color: #fff;
}

.secondary { background-color: transparent; color: var(--brand-primary); border: 2px solid #a0aec0; }

.secondary:hover {
    background-color: #3498db;
    color: #fff;
}

.btn-text {
    color: var(--brand-primary);
    display: inline-flex;
    align-items: center;
    font-weight: 500;
}

.btn-text i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.btn-text:hover i {
    transform: translateX(3px);
}

/* Header & Navigation */
header {
    padding: 20px 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.logo a {
    font-family: 'Lora', serif;
    font-size: 2.4rem;  /* Increase font size */
    font-weight: 700;
    color: #1a1a1a;
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px; /* Space between logo and text */
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0; /* Reset any default margin */
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #1a1a1a;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    text-decoration: none;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand-primary);
    transition: width 0.3s ease;
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

.mobile-menu {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;  /* Adjust based on header height */
        left: 0;
        background-color: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 15px 0;
        text-align: center;
    }

    .mobile-menu {
        display: block;
    }
}

/* Page Header */
.page-header {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
    text-align: center;
}

.page-header h1 { font-size: 2.6rem; margin-bottom: 15px; letter-spacing: .3px; }

.page-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px; 
}


/* Impact Stats */
.impact-stats {
    padding: 60px 0;
    background-color: #fff;
}

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

.stat-card { text-align: center; padding: 30px 20px; border-radius: 12px; box-shadow: 0 14px 34px rgba(0,0,0,.08); transition: transform 0.4s ease, box-shadow .4s ease; backdrop-filter: blur(4px); }

.stat-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(0,0,0,.12); }

.stat-card h3 { font-size: 2.2rem; color: var(--brand-primary); margin-bottom: 10px; }

/* Mission Statement */
.mission { padding: 80px 0; background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);} 

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

.mission-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.mission-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.image-container {
    display: flex;
    justify-content: center;  
    align-items: center;
    gap: 60px;
    margin: 0 auto;            
    max-width: 100%;           
}

.image-container img { width: 60%; height: auto; border-radius: 14px; box-shadow: 0 18px 30px rgba(0,0,0,.12); }




/* Events Section */
.events-preview { background: radial-gradient(1200px 600px at 50% -100px, rgba(47,109,93,.15), transparent 60%), #f9fbff; padding: 80px 20px; }

.events-preview .container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.events-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: bold;
    letter-spacing: 1px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center;
    padding: 0 20px;
}

.event-card { background-color: #fff; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,.08); padding: 30px 25px; width: 100%; text-align: left; display: flex; flex-direction: column; gap: 20px; transition: transform .35s ease, box-shadow .35s ease; overflow: hidden; }

.event-card:hover { transform: translateY(-8px); box-shadow: 0 16px 42px rgba(0,0,0,.12); }

.event-date {
    background-color: var(--brand-primary);
    color: #fff;
    border-radius: 50%;
    padding: 20px;
    text-align: center;
    width: 80px;
    height: 80px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.event-info h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.event-info p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.5;
}

.btn-text {
    display: inline-block;
    color: var(--brand-primary);
    font-weight: 500;
    text-decoration: none;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.btn-text:hover { color: #275b4e; }

.events-more {
    margin-top: 40px;
}

.events-more .btn.secondary { background-color: #eef2f6; color: #1a1a1a; padding: 12px 24px; border-radius: 6px; font-weight: 500; text-decoration: none; transition: background 0.3s ease; }

.events-more .btn.secondary:hover { background-color: #e2e8f0; }

/* Featured Events */
.featured-events .event-featured {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-image {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.event-details {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.event-details h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.event-meta {
    font-size: 1rem;
    color: #555;
    display: flex;
    gap: 15px;
}

.event-buttons a {
    margin-top: 10px;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
}

.event-buttons a.btn.primary {
    background-color: #3498db;
    color: #fff;
    transition: background 0.3s ease;
}

.event-buttons a.btn.secondary {
    background-color: #e0e0e0;
    color: #1a1a1a;
    transition: background 0.3s ease;
}

.event-buttons a:hover {
    background-color: #1a6ec8;
}

.event-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

/* Event Section Padding */
.featured-events,
.upcoming-events {
    padding: 80px 20px;
}


/* Get Involved */
.get-involved { padding: 80px 0; background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%); }

.get-involved h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.way-card {
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.way-card i { font-size: 2.5rem; color: var(--brand-primary); margin-bottom: 20px; }

.way-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Our Story */
.our-story {
    padding: 60px 0;
}

.our-story .container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    align-items: center;
}

.story-content h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 600;
}

.story-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}


/* Our Values */
.our-values {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.our-values h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.value-card {
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.value-card i {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}
/* Our Team */
.our-team { padding: 60px 0; background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%); }

.our-team h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    font-weight: 700;
}

.team-category {
    margin-bottom: 40px;
}

.team-category h3 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    color: #333;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 30px;
    justify-items: center;
}

.team-member {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.member-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.team-member p {
    color: #666;
    font-size: 0.95rem;
}

/* Join Team CTA */
.join-team-cta {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 20px;
}

.cta-content p {
    margin-bottom: 30px;
}

/* Impact Page */
.impact-intro { padding: 60px 0; text-align: center; background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%); }

.impact-intro .content {
    max-width: 800px;
    margin: 0 auto;
}

.impact-intro h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.impact-intro p {
    font-size: 1.125rem;
    color: #555;
}

/* Impact Stats Section */
.impact-stats-large {
    padding: 80px 0;
    background-color: #fff;
}

.impact-stats-large h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    text-align: center;
}

.stat-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-card h3 { font-size: 2.2rem; font-weight: 700; color: var(--brand-primary); margin-bottom: 10px; }

.stat-card p {
    font-size: 1.125rem;
    color: #555;
}

/* Impact Stories Section */
.impact-stories { padding: 80px 0; background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%); }

.impact-stories h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
}

.story-card {
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    margin-bottom: 40px;
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.story-photos {
    width: 60%; 
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr)); 
    gap: 10px;
}

.story-photos img { width: 100%; height: auto; object-fit: cover; border-radius: 10px; }

.story-content {
    width: 100%; 
    padding: 10px;
}


.story-content h3 {
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.story-content p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 15px;
}

.story-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

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

.mini-stat span { font-size: 1.5rem; font-weight: 700; color: var(--brand-primary); }

.mini-stat p {
    font-size: 1rem;
    color: #555;
}

/* Mobile Styles for Impact Page */
@media (max-width: 768px) {
    .impact-intro h1 {
        font-size: 2rem;
    }

    .impact-intro p {
        font-size: 1rem;
    }

    .impact-stats-large h2, .impact-stories h2 {
        font-size: 2rem;
    }

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

    .story-card {
        flex-direction: column;
    }

    .story-photos {
        width: 100%;
        padding: 0;
    }

    .story-content {
        width: 100%;
        padding: 15px;
    }
}


/* Positions Section */
#positions {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.position {
    margin-bottom: 30px;
}

.position h2 {
    font-size: 1.8em;
    color: #333;
}

.position ul {
    margin-left: 20px;
    list-style-type: disc;
}

.position p {
    color: #666;
}


/* Apply Buttons */
.apply-buttons {
    text-align: center;
    margin-bottom: 30px;
}

/* Deprecated .apply-button replaced by .btn */

/* Contact Section */
#contact {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #f7f7f7;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#contact h2 {
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-bottom: 1.5rem;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Form Container */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px; /* More space between elements */
}

/* Input/textarea Styles */
.contact-form label {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.contact-form input, 
.contact-form textarea, 
select.ui-select {
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.contact-form input:focus, 
.contact-form textarea:focus,
select.ui-select:focus {
    border-color: var(--brand-primary);
    outline: none;
    box-shadow: 0 0 10px rgba(47, 109, 93, 0.3);
}

/* Button Styles */
.contact-form button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    align-self: center; /* Center button */
}

.contact-form button:hover {
    background-color: #2980b9;
    transform: scale(1.05); /* Button animation */
}

.contact-form button:active {
    transform: scale(1);
}

/* Gallery Section */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
    margin-top: 30px;
}

.gallery a { display: inline-block; overflow: hidden; border-radius: 16px; box-shadow: 0 12px 30px rgba(0,0,0,.12); transition: transform .35s ease, box-shadow .35s ease; }

.gallery a:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(0,0,0,.16); }

.gallery img { width: 250px; height: 180px; object-fit: cover; border-radius: 12px; transition: transform .35s ease; }

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

/* Custom Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.lightbox-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.lightbox-modal .close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

.lightbox-modal .close:hover { color: var(--brand-primary); }

/* Responsive Design */
@media (max-width: 768px) {
    .gallery img {
        width: 100%;
        max-width: 300px;
    }
}


/* Map Section */
.map-section {
    padding-bottom: 80px;
}

.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Footer */
footer {
    padding: 60px 0 20px;
    background-color: #1a1a1a;
    color: #f8f9fa;
}

/* Instagram preview */
.social-preview { padding: 70px 0; background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%); }
.ig-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: center; }
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.ig-grid img { width: 100%; height: 170px; object-fit: cover; border-radius: 12px; box-shadow: 0 10px 24px rgba(0,0,0,.08); cursor: pointer; }
@media (max-width: 768px){ .ig-wrap { grid-template-columns: 1fr; } .ig-grid { grid-template-columns: repeat(2,1fr);} }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.reveal-active { opacity: 1; transform: translateY(0); }

/* Back to top button */
#back-to-top { position: fixed; right: 20px; bottom: 24px; width: 44px; height: 44px; border-radius: 50%; border: none; background: #1a1a1a; color: #fff; display: grid; place-items: center; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .3s ease; z-index: 1000; }
#back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

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

.footer-logo h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-logo p {
    color: #aaa;
}

.footer-links h4,
.footer-social h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

.footer-links ul li a {
    color: #aaa;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover { color: var(--brand-primary); }

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #3498db;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Media Queries */
@media (max-width: 992px) {
    .our-story .container {
        grid-template-columns: 1fr;
    }
    
    .story-image {
        grid-row: 1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        flex-direction: column;
        align-items: center;
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .mobile-menu {
        display: block;
    }

    .hero {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f4f4f4; /* light background, optional */
        text-align: center;
        padding: 0 20px; /* for small screen spacing */
    }
    
    .hero .container {
        max-width: 900px;
        width: 100%;
    }
    
    .hero-content h1 {
        font-size: 3rem;
        margin-bottom: 20px;
        color: #1a1a1a;
    }
    
    .hero-content p {
        font-size: 1.25rem;
        margin-bottom: 30px;
        color: #333;
        line-height: 1.6;
    }
    
    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
        border-radius: 6px;
        text-decoration: none;
        transition: background 0.3s ease;
    }
    
    .btn.primary {
        background-color: #3498db;
        color: #fff;
    }
    
    .btn.secondary {
        background-color: #eee;
        color: #1a1a1a;
    }
    
}

@media (max-width: 576px) {
    .job-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .stat-card h3 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}