#profile_content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.profile_section {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.profile_section h3 {
    font: 600 20px/24px "Inter", serif;
    color: #022352;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #E6F0FF;
}

.profile_info_grid {
    display: grid;
    gap: 16px;
}

.profile_info_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.profile_info_item:last-child {
    border-bottom: none;
}

.profile_info_item label {
    font: 600 14px/20px "Inter", serif;
    color: #666;
    min-width: 120px;
}

.profile_info_item span {
    font: 400 14px/20px "Inter", serif;
    color: #022352;
    flex: 1;
    margin: 0 16px;
}

.profile_info_item a {
    font: 400 14px/20px "Inter", serif;
    color: var(--primary-blue);
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s;
    width: fit-content;
}

.profile_info_item a:hover {
    background: rgba(11,100,221,0.1);
}

.profile_avatar {
    display: flex;
    align-items: center;
    position: relative;
    width: 64px;
    height: 64px;
    background: var(--primary-blue);
    border-radius: 50%;
    margin-right: 16px;
}

.profile_avatar .material-symbols-outlined {
    font-size: 40px !important;
    color: #fff;
    display: none;
}

.profile_avatar span:not(.material-symbols-outlined) {
    font: 600 24px/24px "Inter", serif;
    color: #fff;
    width: 100%;
    text-align: center;
}

.profile_name_section {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.profile_name_section span {
    font: 600 18px/22px "Inter", serif;
    color: #022352;
    margin: 0 8px 4px;
}

.stats_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.stat_item {
    text-align: center;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.stat_value {
    display: block;
    font: 600 20px/24px "Inter", serif;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.stat_label {
    font: 400 12px/16px "Inter", serif;
    color: #666;
}

@media (max-width: 992px) { 
    #profile_content {
        padding: 16px;
    }
    
    .profile_section {
        padding: 16px;
    }
    
    .profile_info_item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .profile_info_item label {
        min-width: auto;
    }
    
    .profile_info_item span {
        margin-right: 0;
        margin-left: 0;
    }

    .profile_info_item a {
        padding: 0;
    }

    .profile_info_item a:hover {
        background: #ffffff;
    }
    
    .tier_header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .billing_info {
        grid-template-columns: 1fr;
    }
    
    .stats_grid {
        grid-template-columns: 1fr;
    }
}