.what-we-do-section {
    padding: 100px 5%;
    font-family: 'Roboto', sans-serif;
}

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

.what-we-do-header {
    text-align: center;
    margin-bottom: 60px;
}

.what-we-do-title {
    font-family: 'Roboto Slab', serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
}

.what-we-do-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: #555;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pillar-card {
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pillar-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.pillar-title {
    font-family: 'Roboto Slab', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.pillar-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
    flex-grow: 1;
}

.pillar-link {
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.pillar-link:hover {
    opacity: 0.8;
}

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