:root {
    --primary-color: #3b5a38;
    --primary-dark: #2a4128;
    --text-main: #1a1a1a;
    --text-light: #555555;
    --bg-light: #f5f6f1;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --accent-gold: #e2ce80;
    
    --font-main: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

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

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 700;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--primary-color);
    transition: background-color 0.3s, transform 0.2s;
}

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

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--text-main);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid #a0aab2;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-outline:hover {
    background-color: rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

.back-home-btn {
    display: inline-flex;
    align-items: center;
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    gap: 6px;
}

.back-home-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

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

.logo img {
    height: 48px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 48px;
}

.nav-links a {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-main);
    position: relative;
    padding-bottom: 5px;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-main);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-top: 80px; 
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.85) 30%, rgba(255,255,255,0) 60%);
}

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

.hero-text {
    max-width: 600px;
    padding: 40px 0;
    animation: fadeInUp 1s ease-out forwards;
}

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

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-subtitle i {
    width: 22px;
    height: 22px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 24px;
    color: var(--primary-dark);
    letter-spacing: -1.5px;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-main);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 500;
}

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

/* Values Section */
.values-section {
    background-color: var(--bg-light);
    padding: 100px 0;
}

.values-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.values-intro {
    flex: 0 0 40%;
}

.values-subtitle {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
}

.values-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.values-grid {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.value-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 10px;
}

.value-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    width: 48px;
    height: 48px;
    stroke-width: 1.2;
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.value-item p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* Activities Section */
.activities-section {
    padding: 120px 0;
    background-color: var(--white);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.section-subtitle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.section-subtitle i {
    width: 20px;
    height: 20px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -1px;
}

.link-more {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-main);
    font-size: 15px;
}

.link-more:hover {
    color: var(--primary-color);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.card {
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

.card-image {
    position: relative;
    margin-bottom: 24px;
}

.card-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.card-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 12px;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
    pointer-events: none;
}

.card-icon {
    position: absolute;
    bottom: -20px;
    left: 16px;
    width: 44px;
    height: 44px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border: 3px solid var(--white);
    z-index: 2;
}

.card-icon i {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.card-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 700;
}

.card-content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding-bottom: 120px;
}

.cta-container {
    background-color: var(--primary-dark);
    border-radius: 20px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    background-image: radial-gradient(circle at top right, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.cta-left {
    flex: 0 0 35%;
}

.cta-subtitle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    margin-bottom: 16px;
    color: var(--accent-gold);
    font-weight: 500;
}

.cta-subtitle i {
    width: 18px;
    height: 18px;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.cta-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 50px;
}

.cta-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-icon {
    color: var(--accent-gold);
}

.cta-icon i {
    width: 36px;
    height: 36px;
    stroke-width: 1.5;
}

.cta-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.cta-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
    line-height: 1.5;
}

.cta-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.cta-link i {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.cta-link:hover i {
    transform: translateX(4px);
    color: var(--accent-gold);
}

/* Footer */
.footer {
    background-color: var(--white);
    padding: 60px 0 40px;
    border-top: 1px solid var(--border-color);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 40px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-main);
    font-size: 15px;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.footer-links a {
    font-weight: 600;
    color: var(--text-main);
    font-size: 15px;
}

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

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-light);
    color: var(--text-main);
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 14px;
}

.footer-policy {
    display: flex;
    gap: 24px;
}

.footer-policy a {
    font-weight: 500;
}

.footer-policy a:hover {
    color: var(--text-main);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .values-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cta-container {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
    }
    
    .cta-right {
        justify-content: flex-start;
        width: 100%;
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 16px 24px 24px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        gap: 0;
        z-index: 999;
    }

    .nav-links.mobile-open {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 14px 0;
        font-size: 16px;
        font-weight: 600;
    }

    .nav-actions .btn-primary {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-desc {
        font-size: 16px;
    }
    
    .values-grid {
        flex-direction: column;
        gap: 40px;
        width: 100%;
    }
    
    .value-item {
        flex-direction: row;
        text-align: left;
        gap: 24px;
        align-items: flex-start;
    }
    
    .value-icon {
        margin-bottom: 0;
    }
    
    .cta-right {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Language FAB */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fab-btn:hover {
    background-color: var(--primary-dark);
    transform: scale(1.08);
}

.fab-btn i {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}

.fab-dropdown {
    position: absolute;
    bottom: 75px;
    right: 0;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    min-width: 150px;
    border: 1px solid var(--border-color);
    padding: 8px 0;
}

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

.lang-option {
    background: none;
    border: none;
    padding: 12px 20px;
    text-align: left;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.lang-option:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

/* Donate Page Specific Styles */
.donate-page .navbar {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.donate-hero {
    position: relative;
    padding-top: 120px;
    padding-bottom: 80px;
    background-color: #fcfcfc;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.donate-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
}

.donate-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.donate-hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.donate-form-area {
    flex: 0 0 50%;
    padding-right: 40px;
}

.donate-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-main);
    letter-spacing: -1.5px;
}

.donate-desc {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.donate-options {
    margin-bottom: 30px;
}

.freq-toggle {
    display: inline-flex;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 4px;
    margin-bottom: 24px;
}

.freq-btn {
    padding: 10px 24px;
    border-radius: 30px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s;
}

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

.amount-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.amount-btn {
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    background-color: var(--white);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.2s;
}

.amount-btn.active {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: rgba(59, 90, 56, 0.05);
}

.donate-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 30px;
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

.icon-sm {
    width: 16px;
    height: 16px;
    margin-left: 8px;
}

.secure-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
}

.secure-text i {
    width: 16px;
    height: 16px;
}

.donate-info-card {
    flex: 0 0 40%;
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle i {
    width: 24px;
    height: 24px;
}

.bg-light-green {
    background-color: #f0f4ef;
}

.info-card-header h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

.info-card-desc {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 30px;
}

.info-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.icon-circle-sm {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle-sm i {
    width: 20px;
    height: 20px;
}

.feature-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 13px;
    color: var(--text-light);
}

.projects-section {
    background-color: #f8f9f6;
    padding: 100px 0;
}

.mt-2 {
    margin-top: 8px;
}

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

.btn-round {
    border-radius: 30px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.project-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}

a.project-card {
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.project-image {
    position: relative;
    aspect-ratio: 4/3;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-icon {
    position: absolute;
    bottom: -16px;
    left: 16px;
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border: 2px solid var(--white);
}

.project-icon i {
    width: 16px;
    height: 16px;
}

.project-content {
    padding: 24px 20px 20px;
}

.project-category {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.project-content h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 16px;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-light);
}

.project-location i {
    width: 14px;
    height: 14px;
}

.bottom-cta {
    background-color: #f0f4ef;
    padding: 60px 0;
}

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

.bottom-cta-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.icon-circle-lg {
    width: 64px;
    height: 64px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.icon-circle-lg i {
    width: 32px;
    height: 32px;
}

.bottom-cta-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-main);
}

.bottom-cta-text p {
    font-size: 15px;
    color: var(--text-light);
}

.bg-dark-green {
    background-color: #2a4128;
    border-color: #2a4128;
}

.bg-dark-green:hover {
    background-color: #1a2a19;
    border-color: #1a2a19;
}

@media (max-width: 1024px) {
    .donate-hero-bg {
        width: 100%;
        height: 50%;
        top: 0;
    }
    .donate-hero {
        padding-top: 80px;
    }
    .donate-hero-container {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 30vh;
    }
    .donate-form-area {
        flex: 1;
        padding-right: 0;
        margin-bottom: 40px;
    }
    .donate-info-card {
        width: 100%;
    }
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .donate-title {
        font-size: 40px;
    }
    .bottom-cta-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .bottom-cta-left {
        flex-direction: column;
    }
}

/* Donation Progress Bar */
.donation-progress {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed var(--border-color);
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 8px;
}

.raised-amount {
    font-weight: 700;
    color: var(--primary-color);
}

.goal-amount {
    color: var(--text-light);
}

.progress-bar-container {
    width: 100%;
    height: 6px;
    background-color: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

/* Interactive Hovers for Donate Form */
.freq-btn:hover:not(.active) {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.amount-btn:hover:not(.active) {
    border-color: #b0bec5;
    background-color: var(--bg-light);
}

/* Blank image placeholder */
.project-image.blank-img {
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}
.project-image.blank-img img {
    display: none;
}
.project-image.blank-img::after {
    content: "Image Placeholder";
    color: #9ca3af;
    font-size: 14px;
    font-weight: 600;
    z-index: 1;
}

/* ==========================================================================
   JOIN US PAGE STYLES
   ========================================================================== */

.join-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.join-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.4), rgba(0,0,0,0.1));
}

.join-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 800px;
}

.join-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
}

.join-subtitle i {
    width: 18px;
    height: 18px;
}

.join-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.join-desc {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

.ways-to-help {
    background-color: #2b3d2c;
    padding: 80px 0 0 0;
    position: relative;
}

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

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

.ways-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 60px;
}

.way-card {
    background-color: #f7f9f4;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.way-icon {
    margin-bottom: 16px;
    color: var(--text-main);
}

.way-icon i {
    width: 24px;
    height: 24px;
}

.way-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}

.way-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 24px;
    flex-grow: 1;
}

.way-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
}

.way-link:hover {
    color: var(--primary-color);
}

.way-link i {
    width: 16px;
    height: 16px;
}

/* Application Card */
.application-card {
    display: flex;
    background-color: #f7f9f4;
    border-radius: 20px;
    overflow: hidden;
    transform: translateY(40px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.app-image-side {
    flex: 0 0 40%;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.app-image-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.app-quote {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.app-quote p {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.app-quote span {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.app-form-side {
    flex: 1;
    padding: 40px;
}

.join-form .form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.join-form input,
.join-form select,
.join-form textarea {
    flex: 1;
    padding: 16px;
    border: 1px solid #dce2d8;
    border-radius: 30px;
    font-family: inherit;
    font-size: 14px;
    background-color: transparent;
    color: var(--text-main);
    outline: none;
}

.join-form textarea {
    border-radius: 16px;
    resize: none;
}

.join-form input:focus,
.join-form select:focus,
.join-form textarea:focus {
    border-color: var(--primary-color);
}

.w-100 {
    width: 100%;
}

.join-bottom-cta {
    padding: 100px 0 60px;
    background-color: var(--white);
}

.bottom-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-main);
    margin-right: 16px;
}

@media (max-width: 900px) {
    .application-card {
        flex-direction: column;
    }
    .app-image-side {
        height: 300px;
    }
    .ways-grid {
        grid-template-columns: 1fr;
    }
    .join-form .form-row {
        flex-direction: column;
    }
}

/* ==========================================================================
   OPEN ROLES PAGE STYLES
   ========================================================================== */

.roles-page .navbar {
    background-color: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.roles-main {
    background-color: #2b3d2c;
    min-height: 100vh;
    padding: 140px 0 100px;
}

.roles-title {
    color: var(--white);
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

.roles-board {
    background-color: #f7f9f4;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.roles-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8df;
}

.filter-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.filter-icon i {
    width: 28px;
    height: 28px;
    color: var(--text-main);
}

.filter-options {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.filter-options select,
.filter-options input {
    padding: 10px 16px;
    border: none;
    background-color: transparent;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    outline: none;
    cursor: pointer;
}

.filter-options input {
    color: var(--text-light);
    cursor: text;
}

.filter-options input::placeholder {
    color: #9ca3af;
}

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

.role-card {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border: 2px solid #a3b899;
    border-radius: 16px;
    padding: 20px;
    gap: 24px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.role-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.role-image {
    width: 200px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.role-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.role-content {
    flex: 1;
}

.role-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.role-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
}

.role-loc {
    color: var(--text-main);
}

.role-dur {
    color: var(--text-main);
}

.role-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.role-action {
    flex-shrink: 0;
    padding-left: 20px;
}

.btn-dark-green {
    background-color: #2b3d2c;
    border-color: #2b3d2c;
}

.btn-dark-green:hover {
    background-color: #1f2e1f;
    border-color: #1f2e1f;
}

@media (max-width: 900px) {
    .roles-board {
        padding: 20px;
    }
    .role-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .role-image {
        width: 100%;
        height: 160px;
    }
    .role-action {
        padding-left: 0;
        width: 100%;
    }
    .role-action .btn-primary {
        width: 100%;
    }
    .filter-options {
        flex-direction: column;
        width: 100%;
    }
    .roles-filter-bar {
        align-items: flex-start;
    }
}
