.what-we-do {
    padding: 8rem 0;
    background-color: #F8F9FA;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.what-we-do.animate-section {
    opacity: 1;
    transform: translateY(0);
}

.what-we-do .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.what-we-do .section-title {
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
    animation: none;
    text-align: center;
    margin-bottom: 2.5rem;
}

.what-we-do.animate-section .section-title {
    opacity: 1;
    transform: scale(1);
    animation: smoothFadeIn 1.2s ease-out;
}

.what-we-do .section-content {
    opacity: 0;
    transform: translateY(20px) scale(1.05);
    transition: opacity 1s ease-out 0.4s, transform 1s ease-out 0.4s;
    animation: none;
    text-align: left;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.what-we-do.animate-section .section-content {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: gentleSlideUp 1s ease-out 0.4s;
}

.what-we-do .section-list {
    list-style: none;
    padding: 0;
    padding-left: 2rem;
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out 0.6s, transform 1s ease-out 0.6s;
}

.what-we-do.animate-section .section-list {
    opacity: 1;
    transform: translateY(0);
}

.what-we-do .section-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #555;
    text-align: left;
}

.what-we-do .section-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    top: -0.3em;
    color: #FBDA5F;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.7;
}

.approach {
    padding: 8rem 0;
    background-color: #fff;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

.step-card {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #f8f9fa;
    border-top: 4px solid #9ab761;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: #FBDA5F;
}

.step-icon {
    background-color: #FBDA5F;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: #000;
}

.step-card h3 {
    text-align: left;
    margin-bottom: 1rem;
}

.step-card p {
    text-align: left;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.step-list {
    list-style: none;
    padding: 0;
    padding-left: 1.5rem;
    margin: 1rem 0;
    text-align: left;
}

.step-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.step-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #FBDA5F;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.6;
}

.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: #9ab761;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #1a4d2e;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}


.results {
    padding: 8rem 0;
    background-color: #F8F9FA;
    text-align: center;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

@media (min-width: 769px) {
    .results-grid {
        grid-auto-rows: 1fr;
    }
}

.result-item {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #f8f9fa;
    border-top: 4px solid #9ab761;
}

.result-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: #FBDA5F;
}

.result-icon {
    background-color: #FBDA5F;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #000;
    transition: all 0.3s ease;
}

.result-item:hover .result-icon {
    border: 3px solid #FBDA5F;
    box-shadow: 0 0 0 6px rgba(251, 218, 95, 0.2);
}

.result-item h3 {
    margin-bottom: 1rem;
    color: #000;
    font-size: 1.25rem;
}

.result-item p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.result-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.result-list li {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.result-list li:last-child {
    margin-bottom: 0;
}

.result-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #FBDA5F;
    font-weight: bold;
    font-size: 1.2rem;
}

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.column {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.problem-column {
    border-top: 4px solid #F5A623;
}

.solution-column {
    border-top: 4px solid #9ab761;
}

.column-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.header-icon {
    font-size: 2rem;
}

.column-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #000;
}

.highlight-banner {
    background: linear-gradient(135deg, #FBDA5F 0%, #F5D045 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(251, 218, 95, 0.3);
}

.highlight-banner p {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #000;
}

@media (max-width: 768px) {
    .two-column-layout {
        grid-template-columns: 1fr;
    }
}
