.our-methodologies-section {
    padding: 80px 20px;
    background-color: #F0E9D8;
    font-family: 'Roboto', sans-serif;
}

.our-methodologies-container {
    max_width: 1200px;
    margin: 0 auto;
}

.our-methodologies-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2C3B2D;
    text-align: left;
}

.our-methodologies-intro {
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #2E2A25;
    max-width: 800px;
    line-height: 1.6;
}

.our-methodologies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    /* Center grid if items don't fill row */
    justify-content: center;
}

.methodology-card {
    background-color: #FDFAF5;
    padding: 30px;
    border-left: 3px solid #E2725B; /* Terracotta accent */
    box-shadow: 0 4px 15px rgba(226, 114, 91, 0.08); /* Warm shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.methodology-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(226, 114, 91, 0.15);
}

.methodology-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2C3B2D; /* Dark Olive */
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.methodology-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #2E2A25; /* Charcoal */
    margin: 0;
    flex-grow: 1;
}

/* Tablet */
@media (max-width: 1024px) {
    .our-methodologies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Center the last item if odd number on tablet */
    .methodology-card:last-child:nth-child(odd) {
        grid-column: span 2;
        /* Optional: limit width if we don't want it full width, 
           but usually full width looks cleaner in 2 col grid */
    }
}

/* Mobile */
@media (max-width: 767px) {
    .our-methodologies-section {
        padding: 60px 20px;
    }

    .our-methodologies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .methodology-card:last-child:nth-child(odd) {
        grid-column: auto;
    }
}
