.text-orange {
    color: var(--primary-orange);
}

.text-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: currentColor;
    color: white;
    font-size: 0.8rem;
}

.breadcrumb-container {
    background-color: var(--cream-bg);
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.pillar-card {
    border: none;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    height: 100%;
    overflow: hidden;
}

.pillar-card:hover {
    transform: translateY(-10px);
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.pillar-1 {
    color: #41A6C3;
}

.pillar-2 {
    color: #64C0AB;
}

.pillar-3 {
    color: #B38EBF;
}

.pillar-4 {
    color: #E7A75C;
}

.pillar-header-1 {
    background-color: #41A6C3;
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: bold;
}

.pillar-header-2 {
    background-color: #64C0AB;
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: bold;
}

.pillar-header-3 {
    background-color: #B38EBF;
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: bold;
}

.pillar-header-4 {
    background-color: #E7A75C;
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: bold;
}

.content-section {
    padding: 80px 0;
}

.info-box {
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--primary-orange);
}