
    :root {
        --primary-color: #DA4F77; /* Updated Main Theme Color */
        --text-main: #333333;
        --text-light: #666666;
        --bg-light: #fbf0f3; /* Slightly tinted background to match the pink theme */
    }
    
    .company-profile-wrapper {
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        line-height: 1.6;
        color: var(--text-main);
        max-width: 1000px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    .profile-header {
        text-align: center;
        margin-bottom: 50px;
        padding-bottom: 20px;
        border-bottom: 2px solid var(--primary-color);
    }

    .profile-header h1 {
        color: var(--primary-color);
        font-size: 32px;
        margin-bottom: 10px;
    }

    .profile-header p {
        font-size: 16px;
        color: var(--text-light);
        letter-spacing: 1px;
    }

    /* Core Stats Grid */
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
        margin-bottom: 50px;
    }

    .stat-card {
        background: var(--bg-light);
        padding: 25px 20px;
        text-align: center;
        border-radius: 8px;
        border: 1px solid #f6dce4; /* Lighter border for the pink theme */
        transition: transform 0.3s ease;
    }

    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(218, 79, 119, 0.1); /* Subtle pink shadow */
    }

    .stat-card h3 {
        color: var(--primary-color);
        font-size: 28px;
        margin: 0 0 10px 0;
    }

    .stat-card p {
        margin: 0;
        font-size: 14px;
        font-weight: 500;
        color: var(--text-light);
    }

    /* Content Sections */
    .content-section {
        margin-bottom: 40px;
    }

    .content-section h2 {
        font-size: 24px;
        color: #222;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
    }

    .content-section h2::before {
        content: '';
        display: inline-block;
        width: 4px;
        height: 24px;
        background-color: var(--primary-color);
        margin-right: 12px;
        border-radius: 2px;
    }

    .content-section p {
        margin-bottom: 15px;
        font-size: 15px;
        color: var(--text-light);
        text-align: justify;
    }

    /* Advantages List */
    .advantages-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        margin-top: 20px;
    }

    .advantage-item {
        background: #fff;
        border: 1px solid #eaeaea;
        padding: 20px 20px 20px 50px;
        border-radius: 6px;
        position: relative;
    }

    .advantage-item::before {
        content: '✓';
        position: absolute;
        left: 20px;
        top: 20px;
        color: var(--primary-color);
        font-weight: bold;
        font-size: 18px;
    }

    .advantage-item h4 {
        margin: 0 0 8px 0;
        color: #222;
        font-size: 16px;
    }

    .advantage-item p {
        margin: 0;
        font-size: 14px;
    }

    /* Core Highlights */
    .english-highlights {
        background: var(--bg-light);
        padding: 30px;
        border-radius: 8px;
        margin-top: 40px;
        border: 1px solid #f6dce4;
    }

    .english-highlights ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .english-highlights li {
        font-size: 16px;
        margin-bottom: 12px;
        color: #444;
        font-weight: 500;
        display: flex;
        align-items: center;
    }

    .english-highlights li::before {
        content: '■';
        color: var(--primary-color);
        margin-right: 12px;
        font-size: 12px;
    }
