/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}


/* Variables - CARE Design System */
:root {
    --care-orange: #f97316;
    --care-orange-dark: #ea580c;
    --care-blue: #2563eb;
    --care-gray: #6b7280;
    --care-light-gray: #f8fafc;
    --care-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --care-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.margin-down-3 {
    margin-top: 3rem;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.875rem;
    background: none;
}

.btn-lg {
    padding: 0.5rem 2rem;
    font-size: 1rem;
}

.btn-orange {
    background-color: var(--care-orange);
    color: white;

    box-shadow: var(--care-shadow);
}

.btn-orange:hover {
    background-color: var(--care-orange-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--care-shadow-lg);
}

.btn-hero-cta {
    background-color: var(--care-orange);
    color: white;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    box-shadow: var(--care-shadow-lg);
}

.btn-hero-cta:hover {
    background-color: var(--care-orange-dark);
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.btn-outline {
    border: 2px solid var(--care-orange);
    color: var(--care-orange);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--care-orange);
    color: white;
}

.btn-outline:active {
    border: 2px solid var(--care-orange);
    color: var(--care-orange);
    background: transparent;
    decoration: none;
}


.btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(0.25rem);
}

/* Header */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background 0.3s, color 0.3s, transform 0.3s;
    background: transparent;
    color: #fff;
}

.header.active {
    background: #fff;
    color: #222;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);

}

.header.scrolled {
    background: #fff;
    color: #222;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.header .logo,
.header .title {
    color: inherit;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}



.logo-icon-header {
    width: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon-footer {
    width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-section,
.logo-section:hover,
.logo-section:focus {
    text-decoration: none;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.logo-text-scrolled {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}
.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}
.nav-link-mob {
    color: #1f2937;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.nav-link-scrolled {
    color: #1f2937;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);

}
.nav-item{
    list-style: none;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
}

.nav-link:hover {
    color: var(--care-orange);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.donate-btn {
    display: none;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    width: 1.5rem;
    height: 2px;
    background-color: #fff;
    transition: var(--transition-smooth);
}

.hamburger-scrolled {
    width: 1.5rem;
    height: 2px;
    background-color: #1f2937;
    transition: var(--transition-smooth);
}


.nav-mobile {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
    background-color: #fff;
    with: 100%;
}

.nav-mobile.active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    background-color: #fff;
    z-index: 999;
    margin-top: 3.8rem;
    box-shadow: 0 4px 12px -4px rgba(0,0,0,0.12);
}

.nav-mobile-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
     margin-left: 5%;
    margin-right: 5%;
}

.mobile-donate-btn {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    justify-content: center;
    margin-top: 0.5rem;
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }

    .donate-btn {
        display: inline-flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .mobile-donate-btn {
        display: none;
    }
}

/* Language Switch Section */
.language-switch-section {
    position: relative;
    overflow: hidden;
    min-height: 600px;
} @ media (max-width: 768px) {
    .language-switch-section {
        min-height: 400px;
    }
}

.language-switch-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/static/images/map_dotted_blue.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.language-switch-container {
    position: relative;
    z-index: 0;
}

.language-switch-card {
    background-color: #fff !important;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 6rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}
@media (max-width: 768px) {
    .language-switch-card {
        background-color: #fff !important;
        padding: 1.5rem;
    }
}

/* Language switch table and links */
.language-switch-table {
    width: 100%;
    margin-top: 10px;
}

.language-switch-row {
    text-align: left;
}

.language-switch-cell {
    padding: 0.5rem;
    vertical-align: middle;
    text-align: left;
}

.language-switch-link {
    color: #212529;
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.5rem;
}

.language-switch-link:hover {
    color: #000;
}


/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('/static/images/photo-1469571486292-0ba58a3f068b.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}
.hero-content {
    position: relative;
    z-index: 10;
    top: -45px;
    max-width: 32rem;
    margin: 0 auto;

}@media (max-width: 768px) {
    .hero-content {
        top: 0rem;
        margin: 0 1rem;
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title-block {
    display: block;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.marketing-badge {
    position: absolute;
    top: 10rem;
    left: 15rem;
    background-color: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: bold;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }

    .hero-description {
        font-size: 1.25rem;
    }
}


}


/* About Us Page Styles */

.page-down{
margin-top: 4rem;
}

.mobile-page-down{
margin-top: 3.5rem;
}

.about-hero {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: -2.0rem;
}

.about-hero-content p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.mission-section {
    padding: 50px 0;
}

.work-section{
    padding: 50px 0;
    background: #f8fafc;
 }
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.mission-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.mission-stats {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(234, 88, 12, 0.1) 100%);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.vision-column h2 {
    margin-bottom: 1.5rem;
}
.vision-impact-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.vision-column, .impact-column {
    flex: 1 1 300px;
    background: #fff;
    padding: 2rem 2rem 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
@media (max-width: 800px) {
    .vision-impact-grid {
        flex-direction: column;
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f97316;
}

.stat-label {
    color: #4a5568;
    font-size: 1rem;
}

.history-section {
    padding: 80px 0;
    background: #f8fafc;
}

.history-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    align-items: center;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f97316;
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.timeline-content p {
    color: #4a5568;
    line-height: 1.6;
}

.values-section {
    padding: 80px 0;
}

.values-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f97316;
    margin-bottom: 1rem;
}

.value-card p {
    color: #4a5568;
    line-height: 1.6;
}

.cta-section {
    background: #f97316;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: #f97316;
    border: 2px solid white;
}

.btn-white:hover {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: #f97316;
}

/* Responsive Design for About Us */
@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
}

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Job Section */
.job-listings {
    padding: 3rem 0;
    background: #f8f9fa;
}
.job-listings h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
}
.job-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 2rem;
}
.job-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 2rem;
    transition: box-shadow 0.2s;
}
.job-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}
.job-item h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}
.job-item p {
    margin-bottom: 1rem;
}
.job-meta {
    font-size: 0.75rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
    font-style: italic;
}


.btn-apply {
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-apply:hover {
    background: #0056b3;
}

/* Impact Section */
.impact {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 4rem 0;
}

.impact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.impact-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

.impact-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

.impact-card {
    text-align: center;
    transition: var(--transition-smooth);
}

.impact-card:hover {
    transform: scale(1.05);
}

.impact-card-content {
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: var(--care-shadow);
    height: 100%;
    transition: var(--transition-smooth);
}

.impact-card:hover .impact-card-content {
    box-shadow: var(--care-shadow-lg);
}

.impact-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-weight: bold;
}

.impact-icon-orange {
    background-color: var(--care-orange);
}

.impact-icon-orange span {
    font-size: 1.5rem;
}

.impact-icon-blue {
    background-color: var(--care-blue);
}

.impact-icon-blue span {
    font-size: 1.125rem;
}

.impact-card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.impact-card-description {
    color: var(--care-gray);
    line-height: 1.7;
}

@media (min-width: 768px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .impact-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Work Areas Section */
.work-areas {
    padding: 4rem 0;
    background: white;
}

.work-areas-header {
    text-align: center;
    margin-bottom: 3rem;
}

.work-areas-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.work-areas-description {
    font-size: 1.125rem;
    color: var(--care-gray);
    max-width: 48rem;
    margin: 0 auto;
}

.work-areas-grid {
    display: flex;
    justify-content: center;
    gap: 2rem; /* Adjust spacing as needed */
}

.work-area-card {
    cursor: pointer;
    transition: var(--transition-smooth);
}

@media (max-width: 768px) {
    .work-areas-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem; /* space between cards */
    }
    .work-area-card {
        width: 100%;
    }
}

.work-area-card:hover .work-area-title {
    color: var(--care-orange);
}

.work-area-image {
    position: relative;
    height: 12rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-area-hunger {
    background: linear-gradient(135deg, #4ade80, #16a34a);
}

.work-area-health {
    background: linear-gradient(135deg, #f87171, #dc2626);
}

.work-area-education {
    background: linear-gradient(135deg, #60a5fa, #2563eb);
}

.work-area-equality {
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
}

.work-area-emoji {
    font-size: 3.75rem;
}

.work-area-overlay {
    position: absolute;
    inset: 0;

    transition: var(--transition-smooth);
}

.work-area-card:hover .work-area-overlay {
    background-color: rgba(0, 0, 0, 0.3);
}

.work-area-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
    transition: var(--transition-smooth);
}

.work-area-description {
    color: var(--care-gray);
    font-size: 0.875rem;
}

.work-areas-cta {
    text-align: center;
    padding-top: 2rem;
}



@media (min-width: 768px) {
    .work-areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .work-areas-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .work-areas-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}



/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 3rem 0;
}


.footer-content {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    margin-top: -0.5rem;
}

.logo-text-footer {
        font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-title {
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: white;
    text-decoration: none!important;
}


.footer-title {
    list-style: none;
}

.footer-title li {
    margin-bottom: 0.5rem;
}

.footer-title a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-title a:hover {
    color: white;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
}

.footer-legal a:hover {
    color: white;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-copyright {
        text-align: right;
    }
}

/* Volunteers */
.impact-grid-volunteers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.impact-column-volunteers {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-column-volunteers:hover {
}

.impact-column-volunteers h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.impact-column-volunteers p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Responsive design */
@media (max-width: 1024px) {
    .impact-grid-volunteers {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .impact-grid-volunteers {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.impact-grid-rows {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.impact-row-volunteers {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-row-volunteers:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.impact-row-volunteers h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.impact-row-volunteers p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .impact-grid-rows {
        gap: 1.5rem;
    }
}

.careers-btn {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.careers-btn:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

.careers-btn:active {
    background-color: #004085;
    transform: translateY(0);
}

/* Vacatures */
.work-areas-cta-vacature {
    text-align: left;
    padding-top: 2rem;
}

/* How To Help Section */

.how-to-column h2 {
    margin-bottom: 1.5rem;
}
.how-to-impact-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: stretch; /* Make all columns same height */
}

.how-to-content {
    flex: 1;
}

.how-to-column {
    flex: 1 1 300px;
    background: #fff;
    padding: 2rem 2rem 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@media (max-width: 800px) {
    .how-to-impact-grid {
        flex-direction: column;
    }
}

.values-list {
    list-style: none;
    padding-left: 0;
}

.values-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.value-icon {
    margin-right: 0.75rem;
    font-size: 1.2em;
}


.how-to-values-section {
    padding: 0px 0 80px 0;
}

.how-to-values-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
}

.how-to-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.how-to-value-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.how-to-value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f97316;
    margin-bottom: 1rem;
}

.how-to-value-card p {
    color: #4a5568;
    line-height: 1.6;
}


/* projects */

.orange-text {
    color: var(--care-orange);
}

/* privacy policy */
.privacy-policy-container {
    max-width: 800px;
    margin: 80px auto 0;
    padding: 2rem;
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
}

.privacy-header h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.last-updated {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.privacy-content {
    text-align: left;
}

.privacy-section {
    margin-bottom: 2.5rem;
}


.privacy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
}

.privacy-section h2 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    border-left: 4px solid #ea580c;
    padding-left: 1rem;
}

.intro-section {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2.5rem;
}

.closing-statement {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 2.5rem;
}

/* terms and conditions */
.terms-container {
    max-width: 800px;
    margin: 80px auto 0;
    padding: 2rem;
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.terms-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
}

.terms-header h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.terms-content {
    text-align: left;
}

.terms-section {
    margin-bottom: 2.5rem;
}

.terms-section h2 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    border-left: 4px solid #ea580c;
    padding-left: 1rem;
}

.terms-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.terms-section li {
    margin-bottom: 0.5rem;
}

.closing-statement {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 2.5rem;
}

/* Contact Page Styles */
.contact-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 100;
    margin-bottom: 1.5rem;
    margin-top: -2.0rem;
}

.contact-hero-content p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.contact-page {
    padding-top: 4rem;
}

.page-header {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-form-section {
    padding: 80px 0;
    background: #f7fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 0.5fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    padding: 2rem 0;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #ff6b35;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-details h4 {
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: #4a5568;
    margin: 0;
    line-height: 1.5;
}

.office-hours {
    margin-top: 3rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.office-hours h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.office-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.office-hours li {
    color: #4a5568;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.contact-form-card {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.contact-form-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 2rem;
}

.alert {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.alert i {
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.form-group label i {
    margin-right: 0.5rem;
    color: #ff6b35;
    width: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: #ff6b35;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-card {
        padding: 2rem;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 60px 0;
    }

    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-card {
        padding: 1.5rem;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

.map-item {
    margin-top: 2rem;
}

.map-container {
    margin-top: 0.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.location-map {
    width: 100%;
    height: auto;
    display: block;
}


/* project Section */
.project-listings {
    padding: 3rem 0;
    background: #f8f9fa;
}
.project-listings h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
}
.project-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 2rem;
}
.project-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 2rem;
    transition: box-shadow 0.2s;
}
.project-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}
.project-item h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}
.project-item p {
    margin-bottom: 1rem;
}
.projects-meta {
    font-size: 0.75rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
    font-style: italic;
     display: flex;
    justify-content: flex-end;

}

/* Language Switch Section */
.language-switch-section {
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.language-switch-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/static/images/map_dotted_blue.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.language-switch-container {
    position: relative;
    z-index: 0;
}

/* Make the card transparent */
.language-switch-card {
    background-color: transparent !important;
    border: none !important;
}

/* Language switch table and links */
.language-switch-table {
    width: 100%;
    margin-top: 24px;
}

.language-switch-row {
    text-align: left;
}

.language-switch-cell {
    padding: 0.5rem;
    vertical-align: middle;
    text-align: left;
}

.language-switch-link {
    color: #212529;
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.5rem;
}

.language-switch-link:hover {
    color: white;
}

.lang-values-section {
    padding: 80px 0;
}

.lang-values-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
}

.lang-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.lang-value-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.lang-value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f97316;
    margin-bottom: 1rem;
}

.lang-value-card p {
    color: #4a5568;
    line-height: 1.6;
}
