.angie-about-5852 {
    width: 100%;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f0f1f2 100%);
    padding: 80px 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    overflow: hidden;
}

.ab-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.ab-content-col {
    flex: 1;
}

.ab-image-col {
    flex: 1;
    display: flex;
    justify-content: center;
}

.ab-tagline {
    font-size: 0.9rem;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin: 0 0 15px;
}

.ab-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 25px;
    line-height: 1.2;
}

.ab-desc {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.ab-desc p {
    margin-bottom: 15px;
}

.ab-desc p:last-child {
    margin-bottom: 0;
}

.ab-email-cta {
    display: inline-flex;
    align-items: center;
    color: #ff6b35;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ab-arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.ab-email-cta:hover .ab-arrow {
    transform: translateX(4px);
}

.ab-skills-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.ab-skill-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 10px;
}

.ab-skill-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.ab-skill-percent {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff6b35;
    margin: 0;
}

.ab-skill-bar-wrap {
    width: 100%;
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.ab-skill-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35 0%, #f7b801 100%);
    border-radius: 10px;
    transition: width 1s ease-out;
}

.ab-img-wrapper {
    max-width: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.ab-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

/* Animations */
.animate-fade-in-left {
    opacity: 0;
    animation: fadeInLeft 0.8s forwards ease-out;
}

.animate-fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s forwards ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1199px) {
    .ab-container {
        gap: 40px;
    }
    .ab-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 767px) {
    .ab-container {
        flex-direction: column;
        gap: 40px;
    }
    .ab-title {
        font-size: 2rem;
    }
    .ab-img-wrapper {
        max-width: 100%;
    }
    .angie-about-5852 {
        padding: 50px 20px;
    }
}