/* --- Global Font & Layout --- */
#primeagile__21559 {
    margin-top: 5rem;
    color: #333;
    line-height: 1.6;
    
    background: #FAF9F6;
}

/* --- Section Spacing --- */
#primeagile__21575, 
#primeagile__21568, 
#primeagile__21576 {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* --- 1. PROFILE SECTION --- */

/* Circular Image */
#primeagile__18021 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 8px 20px rgba(11, 43, 66, 0.15); /* Navy shadow */
    display: block;
    margin: 0 auto 20px auto;
}

/* Name */
#primeagile__18003 {
    font-size: 2rem;
    color: #0b2b42; /* Deep Navy */
    font-weight: 800;
    text-align: center;
    margin-bottom: 5px;
}

/* Job Title */
#primeagile__18020 span {
    display: block;
    text-align: center;
    color: #d92c27; /* Brand Red */
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 30px;
}

/* Section Headers (About, Professional) */
#primeagile__21562,
#primeagile__21566 {
    font-size: 1.5rem;
    color: #0b2b42;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-weight: 700;
}

/* --- 2. SKILLS, STRENGTHS & LANGUAGES (The Bubbles) --- */

/* Headers for these sections */
#primeagile__18008, /* Strengths */
#primeagile__18017, /* Skills */
#primeagile__18054, /* Languages */
#primeagile__18057  /* Nationality */ {
    font-size: 1.25rem;
    color: #0b2b42;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 0;
}

/* Bubble Styling */
/* Selector targets: Container > Wrapper Div > Item Div */
#primeagile__18013 > div > div, /* Strengths items */
#primeagile__18016 > div > div, /* Skills items */
#primeagile__18052 > div > div  /* Language items */ {
    display: inline-block;
    background-color: #f0f6fa; /* Light Blue Tint */
    color: #0b2b42;            /* Navy Text */
    padding: 8px 18px;
    margin: 0 10px 10px 0;
    border-radius: 50px;       /* Pill Shape */
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #dbebf5;
    transition: all 0.2s ease;
}

/* Hover Effect for Bubbles */
#primeagile__18013 > div > div:hover,
#primeagile__18016 > div > div:hover,
#primeagile__18052 > div > div:hover {
    background-color: #fff;
    color: #d92c27;            /* Brand Red */
    border-color: #d92c27;
    cursor: default;
    box-shadow: 0 4px 10px rgba(217, 44, 39, 0.1);
}

/* Fix Text Alignment inside bubbles */
#primeagile__18013 span,
#primeagile__18016 span,
#primeagile__18052 span {
    text-align: left !important; /* Overriding inline style from HTML */
}

/* --- 3. NATIONALITY --- */
#primeagile__18056 span {
    font-size: 1rem;
    color: #555;
    font-weight: 500;
    display: block;
}

/* --- 4. RESPONSIVE LAYOUTS --- */
@media (min-width: 768px) {
    /* Profile Section: Image Left, Text Right */
    #primeagile__21560 {
        display: flex;
        align-items: flex-start;
    }
    #primeagile__18020 {
        flex: 0 0 300px;
        margin-right: 40px;
        text-align: center;
    }
    
    /* Skills & Strengths: Side by Side */
    #primeagile__21568 {
        display: flex;
        flex-direction: row;
        border-top: 1px solid #eee;
        margin-top: 20px;
    }
    #primeagile__21569, 
    #primeagile__21570 {
        flex: 1;
    }

    /* Nationality/Languages Row */
    #primeagile__21576 {
        border-top: 1px solid #eee;
    }
}