/* Container Layout */
.angie-about-us-container {
    width: 100%;
    margin: 0 auto;
}

.angie-about-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 60px; /* Increased gap for better separation */
    align-items: flex-start;
}

.angie-about-left-column {
    flex: 1;
    min-width: 300px;
}

.angie-about-right-column {
    flex: 1;
    min-width: 300px;
    background-color: #F8F9FA;
    padding: 40px;
    border-radius: 12px;
}

@media (max-width: 991px) {
    .angie-about-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .angie-about-right-column {
        width: 100%;
    }
}

/* Left Column Styling */
.angie-about-eyebrow {
    display: inline-block;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background-color: #202C40; /* Primary fallback */
    border-radius: 4px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.angie-about-headline {
    font-size: 36px;
    line-height: 1.2;
    color: #202C40;
    margin-bottom: 24px;
    font-weight: 700;
}

.angie-about-description {
    font-size: 16px;
    line-height: 1.6;
    color: #4A5568;
    margin-bottom: 30px;
}

.angie-about-description p {
    margin-bottom: 15px;
}

/* Strengths List */
.angie-about-strengths-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 30px;
}

.angie-about-strength-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 14px;
}

.angie-about-check-icon {
    flex-shrink: 0;
    margin-right: 12px;
    color: #BBA364; /* Accent fallback */
    font-size: 16px;
    margin-top: 3px;
}

.angie-about-strength-text {
    font-size: 15px;
    color: #202C40;
    font-weight: 600;
    line-height: 1.4;
}

/* Right Column Styling */
.angie-about-right-headline {
    font-size: 24px;
    font-weight: 700;
    color: #202C40;
    margin-bottom: 20px;
}

.angie-about-right-content {
    font-size: 15px;
    line-height: 1.6;
    color: #4A5568;
    margin-bottom: 30px;
}

.angie-about-right-content p {
    margin-bottom: 15px;
}

/* Outcomes Section */
.angie-about-outcomes-section {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 25px;
}

.angie-about-outcomes-headline {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #202C40;
    margin-bottom: 15px;
}

.angie-about-outcomes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.angie-about-outcome-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.angie-about-outcome-bullet {
    width: 6px;
    height: 6px;
    background-color: #BBA364; /* Accent fallback */
    border-radius: 50%;
    margin-top: 8px;
    margin-right: 12px;
    flex-shrink: 0;
}

.angie-about-outcome-text {
    font-size: 14px;
    line-height: 1.5;
    color: #4A5568;
}