/* ==================== VARIABLES CSS ==================== */
:root {
    --primary-color: #f7931e; /* Naranja principal */
    --secondary-color: #030009; /* Azul oscuro - Este es el negro que aplicaremos */
    --dark-blue: #003a6a; /* Azul más oscuro para títulos */
    --text-color-dark: #333333; /* Un gris oscuro para texto general en fondos claros */
    --text-color-light: #9c8a8a; /* Gris claro para texto secundario */
    --text-color-white: #fff; /* Blanco puro para texto */
    --border-radius: 8px;
    --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    --floating-shadow: 0 10px 30px rgba(0, 0, 0, 0.25); /* Sombra más pronunciada para el efecto flotante */
}

/* ==================== GENERAL STYLES & BUTTONS ==================== */
body {
    font-family: Arial, sans-serif; /* Fuente base */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--text-color-dark); /* Color de texto por defecto para el body, se sobrescribirá en secciones negras */
}

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

.section-subtitle {
    font-size: 1em;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

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

.dark-bg {
    background-color: var(--secondary-color);
}

/* General Button Styles */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-color-white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: #e0801c;
    border-color: #e0801c;
}

.btn-donate { /* Specific style for Donate button in header */
    background-color: var(--primary-color);
    color: var(--text-color-white);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
}
.btn-donate:hover {
    background-color: #e0801c;
}

/* ==================== HEADER STYLES ==================== */
.main-header {
    background-color: var(--secondary-color);
    color: var(--text-color-white);
    padding: 10px 0;
}

.header-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 5px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.social-icons a {
    color: var(--text-color-white);
    margin-left: 15px;
    font-size: 1.1em;
    text-decoration: none;
}

.language-selector a {
    color: var(--text-color-white);
    margin-left: 20px;
    font-size: 0.9em;
    text-decoration: none;
}
.language-selector a.active {
    font-weight: bold;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.main-nav .logo img {
    height: 60px;
    vertical-align: middle;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    color: var(--text-color-white);
    font-weight: bold;
    font-size: 1em;
    padding: 5px 0;
    transition: color 0.3s ease;
    text-decoration: none;
}

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

.nav-actions {
    margin-left: 20px;
}

/* --- Hamburger Menu Styles --- */
.hamburger-menu {
    display: none; 
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001; 
}

.hamburger-menu .bar {
    display: block;
    width: 28px;
    height: 3px; 
    margin: 6px auto; 
    background-color: var(--text-color-white); 
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}

.nav-actions .desktop-only-donate {
    display: block;
}

.nav-links .mobile-only-donate {
    display: none;
}

/* ==================== PAGE HEADER BANNER ==================== */
.page-header-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-color-white);
    padding: 60px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-header-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    z-index: 1;
}

.page-header-banner .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 2.5em;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(201, 186, 186, 0.7);
}

/* ==================== HOW WE STARTED SECTION ==================== */
.how-we-started-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
    color: var(--text-color-white);
}

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

.start-content {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.start-image {
    flex: 1;
    min-width: 400px;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.start-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

.start-text {
    flex: 2;
    color: var(--text-color-white);
    line-height: 1.6;
}

.start-text h2 {
    font-size: 1.8em;
    color: var(--text-color-white);
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: normal;
}

.start-text p {
    font-size: 1em;
    margin-bottom: 15px;
}

/* ==================== WHAT MOVES US SECTION ==================== */
.what-moves-us-section {
    background-color: var(--secondary-color);
    color: var(--text-color-white);
    padding: 80px 0;
}

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

.moves-us-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.moves-us-text {
    flex: 1.5;
    line-height: 1.6;
}

.moves-us-text .section-subtitle {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.moves-us-text h2 {
    font-size: 2.2em;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--text-color-white);
}

.moves-us-text p {
    font-size: 1em;
    margin-bottom: 30px;
}

.moves-us-image {
    flex: 1;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.moves-us-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

/* ==================== PURPOSE SECTION ==================== */
.purpose-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
    color: var(--text-color-white);
}

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

.purpose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.purpose-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    color: var(--text-color-white);
}

.purpose-item .section-subtitle {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 0.95em;
}

.purpose-item h3 {
    font-size: 2em;
    color: var(--text-color-white);
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: bold;
}

.purpose-item p {
    font-size: 1em;
    line-height: 1.6;
    color: #ccc;
}

/* ==================== OUR ROOTS SECTION ==================== */
.our-roots-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
    text-align: center;
    color: var(--text-color-white);
}

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

.roots-description {
    font-size: 1.1em;
    color: var(--text-color-white);
    max-width: 800px;
    margin: 20px auto 50px auto;
    line-height: 1.6;
}

.roots-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    justify-content: center;
}

.root-leaf {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    color: var(--text-color-white);
    font-size: 1.1em;
    text-transform: uppercase;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    box-shadow: var(--box-shadow);
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.root-leaf:hover {
    transform: translateY(-5px);
}

/* ==================== MEET THE TEAM SECTION ==================== */
.meet-the-team-section {
    background-color: var(--secondary-color);
    color: var(--text-color-white);
    padding: 80px 0;
    text-align: center;
}

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

.meet-the-team-section h2 {
    font-size: 2.2em;
    margin-top: 10px;
    margin-bottom: 50px;
    font-weight: bold;
    color: var(--text-color-white);
}

.team-members-carousel {
    display: flex;
    gap: 30px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f1f1f1;
}
.team-members-carousel::-webkit-scrollbar {
    height: 8px;
}
.team-members-carousel::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.team-members-carousel::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}
.team-members-carousel::-webkit-scrollbar-thumb:hover {
    background: #e0801c;
}

.team-member-card {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color-white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    min-width: 250px;
    max-width: 280px;
    flex-shrink: 0;
}

.team-member-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 4px solid var(--primary-color);
}

.team-member-card h4 {
    font-size: 1.2em;
    color: var(--text-color-white);
    margin-top: 0;
    margin-bottom: 5px;
}

.team-member-card p {
    font-size: 0.9em;
    color: #ccc;
    margin-bottom: 0;
}

/* ==================== WHAT WE DO SECTION ALT ==================== */
.what-we-do-section-alt {
    padding: 80px 0;
    background-color: var(--secondary-color);
    text-align: center;
    color: var(--text-color-white);
}

.what-we-do-section-alt .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.what-we-do-section-alt .section-subtitle {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.what-we-do-section-alt h2 {
    font-size: 2.2em;
    color: var(--text-color-white);
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: bold;
}

.what-we-do-section-alt .intro-text-alt {
    font-size: 1.1em;
    color: var(--text-color-white);
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

.what-we-do-grid-alt {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.what-we-do-card-alt {
    background-color: rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    color: var(--text-color-white);
}

.what-we-do-card-alt img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
    margin-bottom: 20px;
}

.what-we-do-card-alt h3 {
    font-size: 1.5em;
    color: var(--text-color-white);
    margin: 0 20px 10px 20px;
    font-weight: bold;
}

.what-we-do-card-alt p {
    font-size: 0.95em;
    color: #ccc;
    line-height: 1.6;
    margin: 0 20px 25px 20px;
    flex-grow: 1;
}

.what-we-do-card-alt .btn-primary {
    margin: 0 20px 0 20px;
    width: calc(100% - 40px);
}

/* ==================== PROJECT METHODOLOGY SECTION ==================== */
.project-methodology-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
    color: var(--text-color-white);
    text-align: center;
}

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

.project-methodology-section .section-subtitle {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.project-methodology-section h2 {
    font-size: 2.2em;
    margin-top: 10px;
    margin-bottom: 50px;
    font-weight: bold;
    color: var(--text-color-white);
}

.methodology-flow-diagram {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px 30px;
    justify-content: center;
    position: relative;
}

.flow-item {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color-white);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flow-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.flow-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--text-color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    margin: 0 auto 20px auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.flow-item h4 {
    font-size: 1.4em;
    color: var(--text-color-white);
    margin-bottom: 10px;
    font-weight: bold;
}

.flow-item p {
    font-size: 0.95em;
    color: #ccc;
    line-height: 1.6;
}

/* ==================== CALL TO ACTION SECTION ==================== */
.call-to-action-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--secondary-color);
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.7) contrast(1.1);
}

.call-to-action-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.call-to-action-container {
    background-color: rgba(255, 255, 255, 0.6);
    color: var(--text-color-dark);
    padding: 35px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--floating-shadow);
    max-width: 550px;
    margin: -60px auto 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.call-to-action-container .section-subtitle {
    color: var(--primary-color);
    margin-bottom: 8px;
}

.call-to-action-container h2 {
    font-size: 2em;
    color: var(--dark-blue);
    margin-top: 8px;
    margin-bottom: 12px;
    font-weight: bold;
}

.call-to-action-container p {
    font-size: 0.95em;
    color: var(--text-color-dark);
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.call-to-action-container .btn-primary {
    font-size: 0.95em;
    padding: 10px 25px;
    border-radius: 30px;
}

/* ==================== FOOTER STYLES ==================== */
.main-footer {
    background-color: var(--secondary-color);
    color: var(--text-color-white);
    padding: 50px 0;
}

.footer-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-col {
    text-align: left;
}

.footer-col h4 {
    color: var(--text-color-white);
    font-size: 1.1em;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}
.footer-col h4::before {
    content: 'I';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-col ul li a {
    color: #ffffff;
    font-size: 0.95em;
    transition: color 0.3s ease;
    text-decoration: none;
}

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

.footer-logo-col img {
    height: 80px;
    margin-bottom: 15px;
}

.footer-logo-col p {
    font-size: 0.9em;
    color: #ccc;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input[type="email"] {
    flex-grow: 1;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    font-size: 0.9em;
    background-color: #fff;
    color: #333;
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: var(--text-color-white);
    border: none;
    padding: 10px 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 0.9em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #e0801c;
}

/* =============================================================
   ================== RESPONSIVE DESIGN ========================
   ============================================================= */
@media (max-width: 992px) {
    .page-title {
        font-size: 2em;
    }
    .page-header-banner {
        padding: 50px 20px;
    }
    .start-content, .moves-us-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .start-image, .moves-us-image {
        min-width: unset;
        width: 80%;
        max-width: 500px;
    }
    .start-text, .moves-us-text {
        text-align: center;
    }
    .start-text h2 {
        font-size: 1.6em;
    }
    .moves-us-text h2 {
        font-size: 1.8em;
    }
    .purpose-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .purpose-item {
        padding: 30px;
    }
    .roots-values-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    .root-leaf {
        width: 150px;
        height: 150px;
        font-size: 1em;
    }
    .team-members-carousel {
        justify-content: flex-start;
        flex-wrap: nowrap;
        padding-left: 20px;
        padding-right: 20px;
    }
    .team-member-card {
        min-width: 220px;
    }
    .what-we-do-grid-alt {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .project-methodology-section h2 {
        font-size: 2em;
        margin-bottom: 40px;
    }
    .methodology-flow-diagram {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px 20px;
    }
    .flow-item::after, .flow-item::before {
        display: none !important;
    }
    .call-to-action-section {
        padding: 80px 0 40px 0;
    }
    .call-to-action-container {
        padding: 30px 20px;
        margin: -50px auto 0 auto;
        max-width: 500px;
    }
    .call-to-action-container h2 {
        font-size: 1.7em;
    }
    .call-to-action-container p {
        font-size: 0.9em;
        margin-bottom: 20px;
    }
    .call-to-action-container .btn-primary {
        font-size: 0.9em;
        padding: 8px 20px;
    }
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-col {
        text-align: center;
    }
    .footer-col h4 {
        padding-left: 0;
        text-align: center;
    }
    .footer-col h4::before {
        display: none;
    }
    .footer-col ul li a {
        justify-content: center;
    }
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    .newsletter-form input, .newsletter-form button {
        border-radius: 5px;
        margin-bottom: 10px;
        width: 80%;
        max-width: 300px;
    }
    .newsletter-form button {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    /* --- NAVEGACIÓN Y MENÚ HAMBURGUESA --- */
    .header-top {
        display: none;
    }

    .main-nav {
        display: flex;
        justify-content: space-between; /* Clave para separar los elementos */
        align-items: center;
        padding: 0.8rem 1rem;
        flex-wrap: nowrap;
    }

    /* ¡CAMBIO AQUÍ! Se añade 'order' para mover el logo a la derecha. */
    .main-nav .logo {
        order: 2; 
    }

    .main-nav .logo img {
        height: 50px;
    }

    /* Ocultamos los enlaces por defecto */
    .nav-links {
        display: none; 
        flex-direction: column;
        width: 100%;
        background-color: var(--secondary-color);
        position: absolute;
        top: 70px; /* Ajusta a la altura de tu nav */
        left: 0;
        padding: 1rem 0;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    /* Mostramos el menú cuando está activo */
    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0.8rem 0;
    }

    .nav-links li a {
        padding: 0.5rem 1rem;
        display: block;
        font-size: 1.1em;
    }

    .nav-links li a:hover {
        color: var(--primary-color);
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    /* ¡CAMBIO AQUÍ! Hacemos visible la hamburguesa y la movemos a la izquierda. */
    .hamburger-menu {
        display: block;
        order: 1;
        margin-left: 0; /* Reseteamos el margen que tenía */
    }
    
    .nav-actions {
        display: none; /* Ocultamos el botón de donar del escritorio */
    }

    /* Animación del icono de hamburguesa a 'X' */
    .hamburger-menu.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger-menu.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* --- OTROS AJUSTES RESPONSIVOS --- */
    h1 { font-size: 2.5em; }
    h2 { font-size: 2em; }
    h3 { font-size: 1.5em; }
    
    .btn {
        padding: 14px 28px;
        font-size: 1em;
    }
    .what-we-do-grid-alt {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    /* Header Responsive */
    .main-header {
        padding: 5px 0;
    }
    .main-nav .logo img {
        height: 50px;
    }
    .btn-donate {
        padding: 8px 15px;
        font-size: 0.85em;
    }

    /* Page Header Banner Responsive */
    .page-title {
        font-size: 1.5em;
    }
    .page-header-banner {
        padding: 40px 0;
    }

    /* How We Started Responsive */
    .how-we-started-section {
        padding: 50px 0;
    }
    .start-image {
        width: 95%;
    }
    .start-text h2 {
        font-size: 1.4em;
    }
    .start-text p {
        font-size: 0.95em;
    }

    /* What Moves Us Responsive */
    .what-moves-us-section {
        padding: 50px 0;
    }
    .moves-us-text h2 {
        font-size: 1.5em;
    }
    .moves-us-image {
        width: 95%;
    }

    /* Purpose Section Responsive */
    .purpose-section {
        padding: 50px 0;
    }
    .purpose-item {
        padding: 25px;
    }
    .purpose-item h3 {
        font-size: 1.8em;
    }
    .purpose-item p {
        font-size: 0.95em;
    }

    /* Our Roots Section Responsive */
    .roots-values-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
    }
    .root-leaf {
        width: 120px;
        height: 120px;
        font-size: 0.9em;
    }

    /* Meet the Team Responsive */
    .team-member-card {
        min-width: 180px;
        padding: 15px;
    }
    .team-member-card img {
        width: 120px;
        height: 120px;
    }
    .team-member-card h4 {
        font-size: 1.1em;
    }
    .team-member-card p {
        font-size: 0.85em;
    }

    /* What We Do Alt Responsive */
    .what-we-do-section-alt {
        padding: 50px 0;
    }
    .what-we-do-section-alt h2 {
        font-size: 1.8em;
    }
    .what-we-do-section-alt .intro-text-alt {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .what-we-do-card-alt img {
        height: 160px;
    }

    /* Methodology Flow Diagram Responsive */
    .project-methodology-section {
        padding: 50px 0;
    }
    .project-methodology-section h2 {
        font-size: 1.6em;
    }
    .flow-item p {
        font-size: 0.85em;
    }

    /* Call to Action Responsive */
    .call-to-action-section {
        padding: 60px 0 30px 0;
    }
    .call-to-action-container {
        padding: 20px 10px;
        margin: -40px auto 0 auto;
        max-width: 90%;
    }
    .call-to-action-container h2 {
        font-size: 1.5em;
    }
    .call-to-action-container p {
        font-size: 0.85em;
        margin-bottom: 15px;
    }
    .call-to-action-container .btn-primary {
        font-size: 0.85em;
        padding: 6px 15px;
    }


    /* Footer Responsive */
    .footer-columns {
        padding: 0 15px;
    }
    .footer-logo-col img {
        height: 60px;
    }
    .footer-col h4 {
        font-size: 1em;
    }
    .footer-col ul li a {
        font-size: 0.9em;
    }
    .newsletter-form input, .newsletter-form button {
        width: 95%;
    }
}